aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2007-04-17 03:47:47 +0000
committerPaul Gilbert2007-04-17 03:47:47 +0000
commit23a86ea571a8cdbd11705f81203587a209ab41d7 (patch)
tree2132890039ddfa7d6f430f66e304e87219d8309f
parent969d2572743d0d9415f63c6c1c54f04090681224 (diff)
downloadscummvm-rg350-23a86ea571a8cdbd11705f81203587a209ab41d7.tar.gz
scummvm-rg350-23a86ea571a8cdbd11705f81203587a209ab41d7.tar.bz2
scummvm-rg350-23a86ea571a8cdbd11705f81203587a209ab41d7.zip
Bugfix to have multiple savegame names list vertically
svn-id: r26537
-rw-r--r--engines/lure/surface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/surface.cpp b/engines/lure/surface.cpp
index fdb0e97128..3a8cd18fa4 100644
--- a/engines/lure/surface.cpp
+++ b/engines/lure/surface.cpp
@@ -670,7 +670,7 @@ bool SaveRestoreDialog::show(bool saveDialog) {
// Write out any existing save names
for (index = 0; index < numSaves; ++index)
- s->writeString(DIALOG_EDGE_SIZE, SR_SAVEGAME_NAMES_Y, saveNames[index]->c_str(), true);
+ s->writeString(DIALOG_EDGE_SIZE, SR_SAVEGAME_NAMES_Y + (index * 8), saveNames[index]->c_str(), true);
// Display the dialog
s->copyTo(&screen.screen(), SAVE_DIALOG_X, SAVE_DIALOG_Y);