aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2011-12-09 17:58:30 +0100
committerMax Horn2011-12-09 17:58:30 +0100
commitebba7e39c3635787e40346017a738d5afc06b8b7 (patch)
tree6292f1696c14b4c83283c2b444d2bdfe47f261f6 /engines
parent6c5f4245404fa7ed3e1732203d7154663d8b5808 (diff)
downloadscummvm-rg350-ebba7e39c3635787e40346017a738d5afc06b8b7.tar.gz
scummvm-rg350-ebba7e39c3635787e40346017a738d5afc06b8b7.tar.bz2
scummvm-rg350-ebba7e39c3635787e40346017a738d5afc06b8b7.zip
DREAMWEB: Remove unused code
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 7c388cba6f..53fd7c5bdd 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 3930e06b56..b2e7df0585 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);
}