mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
oops
svn-id: r8160
This commit is contained in:
+2
-1
@@ -859,7 +859,8 @@ void Scumm::loadLanguageBundle() {
|
||||
} else {
|
||||
for (i = 0; i < _languageIndexSize; i++) {
|
||||
// First 8 chars in the line give the string ID / 'tag'
|
||||
for (int j = 0; j < 8 && !isspace(*ptr); j++, ptr++)
|
||||
int j;
|
||||
for (j = 0; j < 8 && !isspace(*ptr); j++, ptr++)
|
||||
_languageIndex[i].tag[j] = toupper(*ptr);
|
||||
_languageIndex[i].tag[j] = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user