diff options
-rwxr-xr-x | devtools/tasmrecover/tasm-recover | 1 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 4 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.h | 1 |
3 files changed, 1 insertions, 5 deletions
diff --git a/devtools/tasmrecover/tasm-recover b/devtools/tasmrecover/tasm-recover index 07df3efe53..22df4f19d6 100755 --- a/devtools/tasmrecover/tasm-recover +++ b/devtools/tasmrecover/tasm-recover @@ -367,6 +367,7 @@ generator = cpp(context, "DreamGen", blacklist = [ 'addtopresslist', 'entercode', 'scanfornames', + 'checkforemm', ], skip_output = [ # These functions are processed but not output 'dreamweb', diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index 7d991e6f37..00d6b94202 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -10630,10 +10630,6 @@ void DreamGenContext::pickupOb() { transferToEx(); } -void DreamGenContext::checkForEMM() { - STACK_CHECK; -} - void DreamGenContext::clearBuffers() { STACK_CHECK; es = data.word(kBuffers); diff --git a/engines/dreamweb/dreamgen.h b/engines/dreamweb/dreamgen.h index ed03809160..2fd2b00370 100644 --- a/engines/dreamweb/dreamgen.h +++ b/engines/dreamweb/dreamgen.h @@ -812,7 +812,6 @@ public: void selectOb(); void usePlinth(); void useCooker(); - void checkForEMM(); void receptionist(); void selectSlot(); void openFileNoCheck(); |