diff options
author | Willem Jan Palenstijn | 2011-11-26 19:08:16 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-11-26 19:08:16 +0100 |
commit | 78ad90cf2e383f02d4441345563a738bd58f19cb (patch) | |
tree | 2fac6fbc42b1d808634437ce38c55f6aaa5f8e39 /engines | |
parent | 33e323ed056f38067aa20db0dc0b2127675c64ae (diff) | |
download | scummvm-rg350-78ad90cf2e383f02d4441345563a738bd58f19cb.tar.gz scummvm-rg350-78ad90cf2e383f02d4441345563a738bd58f19cb.tar.bz2 scummvm-rg350-78ad90cf2e383f02d4441345563a738bd58f19cb.zip |
DREAMWEB: Remove unused function 'storeit'
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/dreamgen.cpp | 10 | ||||
-rw-r--r-- | engines/dreamweb/dreamgen.h | 3 |
2 files changed, 1 insertions, 12 deletions
diff --git a/engines/dreamweb/dreamgen.cpp b/engines/dreamweb/dreamgen.cpp index 82db2606c3..1cf54291d8 100644 --- a/engines/dreamweb/dreamgen.cpp +++ b/engines/dreamweb/dreamgen.cpp @@ -11199,16 +11199,6 @@ afterprintname: goto shownameloop; } -void DreamGenContext::storeit() { - STACK_CHECK; - _cmp(ax, 0); - if (!flags.z()) - goto isntblank; - _inc(ax); -isntblank: - _stosw(); -} - void DreamGenContext::scanfornames() { STACK_CHECK; dx = data; diff --git a/engines/dreamweb/dreamgen.h b/engines/dreamweb/dreamgen.h index b507a89068..886b8d5989 100644 --- a/engines/dreamweb/dreamgen.h +++ b/engines/dreamweb/dreamgen.h @@ -137,7 +137,6 @@ public: static const uint16 addr_showdecisions = 0xc8bc; static const uint16 addr_decide = 0xc8b8; static const uint16 addr_scanfornames = 0xc8b4; - static const uint16 addr_storeit = 0xc8a8; static const uint16 addr_loadseg = 0xc8a0; static const uint16 addr_savefileread = 0xc894; static const uint16 addr_error = 0xc884; @@ -1156,7 +1155,7 @@ public: void useopenbox(); void clearbuffers(); //void neterror(); - void storeit(); + //void storeit(); //void isitworn(); //void putundertimed(); //void dumpmap(); |