aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/agos.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-10-10 12:13:47 +0000
committerTravis Howell2006-10-10 12:13:47 +0000
commit89f79acb84071d56c3758281287d9c3b0c0ed545 (patch)
tree193c515eca77703dfc4c6f3d8fd3c51b8c35dfb7 /engines/agos/agos.cpp
parent99df94503818613b4ae799a2b1742b3b2318dbd4 (diff)
downloadscummvm-rg350-89f79acb84071d56c3758281287d9c3b0c0ed545.tar.gz
scummvm-rg350-89f79acb84071d56c3758281287d9c3b0c0ed545.tar.bz2
scummvm-rg350-89f79acb84071d56c3758281287d9c3b0c0ed545.zip
Fix and remove duplicate opcode for Elvira 1
svn-id: r24262
Diffstat (limited to 'engines/agos/agos.cpp')
-rw-r--r--engines/agos/agos.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/agos/agos.cpp b/engines/agos/agos.cpp
index 50f955d456..920cb6f40a 100644
--- a/engines/agos/agos.cpp
+++ b/engines/agos/agos.cpp
@@ -714,10 +714,13 @@ void AGOSEngine::setupGame() {
_stringIdLocalMin = 1;
for (int i = 0; i < 20; i++) {
- if (getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2)
+ if (getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2) {
_videoWindows[i] = initialVideoWindows_Simon[i];
- else
+ } else {
_videoWindows[i] = initialVideoWindows_Common[i];
+ }
+
+ printf("initialVideoWindows_Common[%d] %d\n", i, _videoWindows[i]);
}
}