diff options
Diffstat (limited to 'engines/dreamweb')
-rw-r--r-- | engines/dreamweb/stubs.cpp | 7 | ||||
-rw-r--r-- | engines/dreamweb/stubs.h | 4 |
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); } |