aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2011-12-09 13:06:31 -0800
committerFilippos Karapetis2011-12-09 13:06:31 -0800
commitc8ff54d2cd321fd0547a2d4be3a34181d45cf3b2 (patch)
treeeab702a02eec421ef3dc7e9946445a36d20cd05e /engines
parente2a92bff295639144157516d6c21711bf50eeda9 (diff)
parentfbacebf777106211291bee9287b5a35b7dde0a01 (diff)
downloadscummvm-rg350-c8ff54d2cd321fd0547a2d4be3a34181d45cf3b2.tar.gz
scummvm-rg350-c8ff54d2cd321fd0547a2d4be3a34181d45cf3b2.tar.bz2
scummvm-rg350-c8ff54d2cd321fd0547a2d4be3a34181d45cf3b2.zip
Merge pull request #133 from fingolfin/dreamweb-cleanup
Dreamweb cleanup
Diffstat (limited to 'engines')
-rw-r--r--engines/dreamweb/stubs.cpp7
-rw-r--r--engines/dreamweb/stubs.h4
2 files changed, 0 insertions, 11 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index 01dc31e4b8..57a2589467 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -1382,13 +1382,6 @@ void DreamGenContext::walkToText() {
commandWithOb(3, data.byte(kCommandtype), data.byte(kCommand));
}
-void DreamGenContext::findOrMake() {
- uint8 b0 = al;
- uint8 b2 = cl;
- uint8 b3 = ch;
- findOrMake(b0, b2, b3);
-}
-
void DreamBase::findOrMake(uint8 index, uint8 value, uint8 type) {
Change *change = (Change *)getSegment(data.word(kBuffers)).ptr(kListofchanges, sizeof(Change));
for (; change->index != 0xff; ++change) {
diff --git a/engines/dreamweb/stubs.h b/engines/dreamweb/stubs.h
index abc7f4fa81..6a453ebaaa 100644
--- a/engines/dreamweb/stubs.h
+++ b/engines/dreamweb/stubs.h
@@ -159,10 +159,6 @@
void blockNameText();
void walkToText();
void personNameText();
- void findOrMake();
- void findOrMake(uint8 index, uint8 value, uint8 type) {
- DreamBase::findOrMake(index, value, type);
- }
DynObject *getFreeAd(uint8 index) {
return DreamBase::getFreeAd(index);
}