aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
diff options
context:
space:
mode:
authorFilippos Karapetis2007-12-13 13:51:04 +0000
committerFilippos Karapetis2007-12-13 13:51:04 +0000
commit2cb9ea3c104c95bb22e9a99f69e367d29741023e (patch)
tree8d8ca26b0e3cca1f59aef00a78801900256473bb /engines/cine
parent1d338096f074d469f5ec3f341d188b6c7c67272c (diff)
downloadscummvm-rg350-2cb9ea3c104c95bb22e9a99f69e367d29741023e.tar.gz
scummvm-rg350-2cb9ea3c104c95bb22e9a99f69e367d29741023e.tar.bz2
scummvm-rg350-2cb9ea3c104c95bb22e9a99f69e367d29741023e.zip
Fixed a regression from the latest cleanup
svn-id: r29847
Diffstat (limited to 'engines/cine')
-rw-r--r--engines/cine/various.cpp4
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;