From 2cb9ea3c104c95bb22e9a99f69e367d29741023e Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Thu, 13 Dec 2007 13:51:04 +0000 Subject: Fixed a regression from the latest cleanup svn-id: r29847 --- engines/cine/various.cpp | 4 ++-- 1 file 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; -- cgit v1.2.3