diff options
author | Filippos Karapetis | 2011-12-18 20:22:03 +0200 |
---|---|---|
committer | Filippos Karapetis | 2011-12-18 20:22:03 +0200 |
commit | 5843fc11579150313b90ead919a8805081839f06 (patch) | |
tree | aa87ec19010106d0c7e252f87621a2e52ea5adf6 | |
parent | 25b99c448d63da48b639834d41146d2f30a11e49 (diff) | |
download | scummvm-rg350-5843fc11579150313b90ead919a8805081839f06.tar.gz scummvm-rg350-5843fc11579150313b90ead919a8805081839f06.tar.bz2 scummvm-rg350-5843fc11579150313b90ead919a8805081839f06.zip |
DREAMWEB: 'nextcolon' is unused
-rwxr-xr-x | devtools/tasmrecover/tasm-recover | 1 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 10 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.h | 1 |
3 files changed, 1 insertions, 11 deletions
diff --git a/devtools/tasmrecover/tasm-recover b/devtools/tasmrecover/tasm-recover index 102f51df46..5f245b4126 100755 --- a/devtools/tasmrecover/tasm-recover +++ b/devtools/tasmrecover/tasm-recover @@ -607,6 +607,7 @@ generator = cpp(context, "DreamGen", blacklist = [ 'neterror', 'newgame', 'newplace', + 'nextcolon', 'nextdest', 'nextfolder', 'nextsymbol', diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index 5be71266cd..f97eba4166 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -2137,16 +2137,6 @@ finishpars: di = offset_operand1; } -void DreamGenContext::nextColon() { - STACK_CHECK; -lookcolon: - al = es.byte(si); - _inc(si); - _cmp(al, ':'); - if (!flags.z()) - goto lookcolon; -} - void DreamGenContext::findPathOfPoint() { STACK_CHECK; push(ax); diff --git a/engines/dreamweb/dreamgen.h b/engines/dreamweb/dreamgen.h index 9b5665c0f3..fb965156f3 100644 --- a/engines/dreamweb/dreamgen.h +++ b/engines/dreamweb/dreamgen.h @@ -488,7 +488,6 @@ public: void purgeAnItem(); void purgeALocation(); void getSetAd(); - void nextColon(); void findOpenPos(); void searchForSame(); void rollEm(); |