mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
Fixed a regression from the latest cleanup
svn-id: r29847
This commit is contained in:
parent
1d338096f0
commit
2cb9ea3c10
@ -1287,7 +1287,7 @@ int16 makeMenuChoice(const commandeType commandList[], uint16 height, uint16 X,
|
||||
|
||||
for (j = 0; j < strlen(commandList[currentSelection]); j++) {
|
||||
currentChar = commandList[currentSelection][j];
|
||||
currentX = drawChar(currentChar, currentX, currentY);
|
||||
currentX = drawChar(currentChar, currentX, di);
|
||||
}
|
||||
|
||||
blitRawScreen(page1Raw);
|
||||
@ -1349,7 +1349,7 @@ int16 makeMenuChoice(const commandeType commandList[], uint16 height, uint16 X,
|
||||
|
||||
for (j = 0; j < strlen(commandList[oldSelection]); j++) {
|
||||
currentChar = commandList[oldSelection][j];
|
||||
currentX = drawChar(currentChar, currentX, currentY);
|
||||
currentX = drawChar(currentChar, currentX, di);
|
||||
}
|
||||
|
||||
di = currentSelection * 9 + Y + 4;
|
||||
|
Loading…
Reference in New Issue
Block a user