diff options
-rwxr-xr-x | devtools/tasmrecover/tasm-recover | 1 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 9 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.h | 3 |
3 files changed, 2 insertions, 11 deletions
diff --git a/devtools/tasmrecover/tasm-recover b/devtools/tasmrecover/tasm-recover index 567893cf7e..fab094178c 100755 --- a/devtools/tasmrecover/tasm-recover +++ b/devtools/tasmrecover/tasm-recover @@ -176,6 +176,7 @@ generator = cpp(context, "DreamGen", blacklist = [ 'readmouse4', 'waitframes', 'drawflags', + 'blockget', 'addtopeoplelist', 'getexpos', 'paneltomap', diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index 4d67ad7701..8e5a784d27 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -4876,15 +4876,6 @@ beforethistext: goto shuffletextads; } -void DreamGenContext::blockget() { - STACK_CHECK; - ah = al; - al = 0; - ds = data.word(kBackdrop); - si = (0+192); - _add(si, ax); -} - void DreamGenContext::drawfloor() { STACK_CHECK; push(es); diff --git a/engines/dreamweb/dreamgen.h b/engines/dreamweb/dreamgen.h index b132604d12..6bed222d1b 100644 --- a/engines/dreamweb/dreamgen.h +++ b/engines/dreamweb/dreamgen.h @@ -380,7 +380,6 @@ public: static const uint16 addr_look = 0xc470; static const uint16 addr_autolook = 0xc46c; static const uint16 addr_drawfloor = 0xc428; - static const uint16 addr_blockget = 0xc424; static const uint16 addr_deleteextext = 0xc420; static const uint16 addr_deleteexframe = 0xc41c; static const uint16 addr_deleteexobject = 0xc418; @@ -1676,7 +1675,7 @@ public: void biblequote(); void doload(); void showexit(); - void blockget(); + //void blockget(); void usetrainer(); //void allocatework(); void addtopresslist(); |