diff options
-rwxr-xr-x | devtools/tasmrecover/tasm-recover | 1 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 29 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.h | 3 |
3 files changed, 2 insertions, 31 deletions
diff --git a/devtools/tasmrecover/tasm-recover b/devtools/tasmrecover/tasm-recover index 2d8461d697..c27c96345b 100755 --- a/devtools/tasmrecover/tasm-recover +++ b/devtools/tasmrecover/tasm-recover @@ -224,6 +224,7 @@ generator = cpp(context, "DreamGen", blacklist = [ 'loadroom', 'getundermenu', 'putundermenu', + 'showoutermenu', ], skip_output = [ # These functions are processed but not output 'dreamweb', diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index d33ad8f75b..40bb16d84d 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -10757,34 +10757,6 @@ void DreamGenContext::dumpmenu() { multidump(); } -void DreamGenContext::showoutermenu() { - STACK_CHECK; - al = 40; - ah = 0; - di = (80+40)-34; - bx = (60)-40; - ds = data.word(kTempgraphics); - showframe(); - al = 41; - ah = 0; - di = (80+40)+64-34; - bx = (60)-40; - ds = data.word(kTempgraphics); - showframe(); - al = 42; - ah = 0; - di = (80+40)-26; - bx = (60)+57-40; - ds = data.word(kTempgraphics); - showframe(); - al = 43; - ah = 0; - di = (80+40)+64-26; - bx = (60)+57-40; - ds = data.word(kTempgraphics); - showframe(); -} - void DreamGenContext::showmenu() { STACK_CHECK; _inc(data.byte(kMenucount)); @@ -16308,7 +16280,6 @@ void DreamGenContext::__dispatch_call(uint16 addr) { case addr_dumpkeypad: dumpkeypad(); break; case addr_usemenu: usemenu(); break; case addr_dumpmenu: dumpmenu(); break; - case addr_showoutermenu: showoutermenu(); break; case addr_showmenu: showmenu(); break; case addr_loadmenu: loadmenu(); break; case addr_viewfolder: viewfolder(); break; diff --git a/engines/dreamweb/dreamgen.h b/engines/dreamweb/dreamgen.h index e79257d7a8..6f2939895a 100644 --- a/engines/dreamweb/dreamgen.h +++ b/engines/dreamweb/dreamgen.h @@ -230,7 +230,6 @@ public: static const uint16 addr_viewfolder = 0xc7b4; static const uint16 addr_loadmenu = 0xc7b0; static const uint16 addr_showmenu = 0xc7ac; - static const uint16 addr_showoutermenu = 0xc7a8; static const uint16 addr_dumpmenu = 0xc79c; static const uint16 addr_usemenu = 0xc798; static const uint16 addr_dumpkeypad = 0xc794; @@ -1749,7 +1748,7 @@ public: void inventory(); void powerlightoff(); void fillopen(); - void showoutermenu(); + //void showoutermenu(); void signon(); void deleteextext(); void foghornsound(); |