diff options
author | Filippos Karapetis | 2007-12-13 14:04:36 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-12-13 14:04:36 +0000 |
commit | dd14a43cacf6aaf04299e0eefc6ccb7d907f5656 (patch) | |
tree | 813e71c0eb3dc4b0d38f616f93f3e09fea4e0a7b | |
parent | 2cb9ea3c104c95bb22e9a99f69e367d29741023e (diff) | |
download | scummvm-rg350-dd14a43cacf6aaf04299e0eefc6ccb7d907f5656.tar.gz scummvm-rg350-dd14a43cacf6aaf04299e0eefc6ccb7d907f5656.tar.bz2 scummvm-rg350-dd14a43cacf6aaf04299e0eefc6ccb7d907f5656.zip |
Fixed one more regression from the latest cleanup
svn-id: r29848
-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 8fba125d0a..5135cb97dd 100644 --- a/engines/cine/various.cpp +++ b/engines/cine/various.cpp @@ -1267,8 +1267,8 @@ int16 makeMenuChoice(const commandeType commandList[], uint16 height, uint16 X, } gfxDrawPlainBoxRaw(X, currentY, X + width, currentY + 4, color2, page1Raw); // bottom part - drawMessageBox(X, Y, width, Y, 1, 0, page1Raw); - drawMessageBox(X, Y, width, Y, 0, color, page1Raw); + drawMessageBox(X, Y, width, currentY, 1, 0, page1Raw); + drawMessageBox(X, Y, width, currentY, 0, color, page1Raw); blitRawScreen(page1Raw); |