diff options
author | Travis Howell | 2006-10-14 12:10:12 +0000 |
---|---|---|
committer | Travis Howell | 2006-10-14 12:10:12 +0000 |
commit | 34b493daf8d922542db93cf621894ed8c80190fc (patch) | |
tree | ac8e0f0fd75a96eaec2615b49b50c1b0fa7c31d9 | |
parent | 26cbbb2ad33b6dabb360a576056749f7e09f66c2 (diff) | |
download | scummvm-rg350-34b493daf8d922542db93cf621894ed8c80190fc.tar.gz scummvm-rg350-34b493daf8d922542db93cf621894ed8c80190fc.tar.bz2 scummvm-rg350-34b493daf8d922542db93cf621894ed8c80190fc.zip |
Fix stub for Amiga demo of Elvira 1
svn-id: r24308
-rw-r--r-- | engines/agos/debug.h | 2 | ||||
-rw-r--r-- | engines/agos/items.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/engines/agos/debug.h b/engines/agos/debug.h index 9c1a074a31..ae54b57771 100644 --- a/engines/agos/debug.h +++ b/engines/agos/debug.h @@ -319,7 +319,7 @@ static const char *const elvira1_opcodeNameTable[300] = { "|CLS", /* 232 */ "W|CLOSE_WINDOW", - NULL, + "WW|AGOS_MENU", NULL, "WWWWWIW|ADD_BOX", /* 236 */ diff --git a/engines/agos/items.cpp b/engines/agos/items.cpp index def463de5b..d21b1f2d9a 100644 --- a/engines/agos/items.cpp +++ b/engines/agos/items.cpp @@ -2078,6 +2078,8 @@ void AGOSEngine::oe1_nextMaster() { void AGOSEngine::oe1_menu() { // 233: agos menu // Used by Amiga demo + getVarOrWord(); + getVarOrWord(); } void AGOSEngine::oe1_bitClear() { |