mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-16 01:08:56 +00:00
HPL1: Remove unused variable
This commit is contained in:
parent
ea542c4619
commit
8787d9ccb3
@ -311,11 +311,9 @@ void FontData::getWordWrapRows(float afLength, float afFontHeight, cVector2f avS
|
||||
apRowVec->push_back(asString);
|
||||
} else {
|
||||
first_letter = 0;
|
||||
unsigned int i = 0;
|
||||
|
||||
for (tUIntListIt it = RowLengthList.begin(); it != RowLengthList.end(); ++it) {
|
||||
apRowVec->push_back(asString.substr(first_letter, *it - first_letter));
|
||||
i++;
|
||||
first_letter = *it + 1;
|
||||
}
|
||||
apRowVec->push_back(asString.substr(first_letter));
|
||||
|
Loading…
x
Reference in New Issue
Block a user