Fixed a regression from the latest cleanup

svn-id: r29847
This commit is contained in:
Filippos Karapetis 2007-12-13 13:51:04 +00:00
parent 1d338096f0
commit 2cb9ea3c10

View File

@ -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;