diff options
author | Filippos Karapetis | 2007-12-13 13:51:04 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-12-13 13:51:04 +0000 |
commit | 2cb9ea3c104c95bb22e9a99f69e367d29741023e (patch) | |
tree | 8d8ca26b0e3cca1f59aef00a78801900256473bb | |
parent | 1d338096f074d469f5ec3f341d188b6c7c67272c (diff) | |
download | scummvm-rg350-2cb9ea3c104c95bb22e9a99f69e367d29741023e.tar.gz scummvm-rg350-2cb9ea3c104c95bb22e9a99f69e367d29741023e.tar.bz2 scummvm-rg350-2cb9ea3c104c95bb22e9a99f69e367d29741023e.zip |
Fixed a regression from the latest cleanup
svn-id: r29847
-rw-r--r-- | engines/cine/various.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cine/various.cpp b/engines/cine/various.cpp index f07f6b3984..8fba125d0a 100644 --- a/engines/cine/various.cpp +++ b/engines/cine/various.cpp @@ -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; |