diff options
Diffstat (limited to 'engines/dreamweb')
-rw-r--r-- | engines/dreamweb/stubs.cpp | 8 | ||||
-rw-r--r-- | engines/dreamweb/stubs.h | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index a61e4bab83..f72c8a694b 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -777,14 +777,6 @@ void DreamGenContext::loadIntoTemp() { loadIntoTemp((const char *)cs.ptr(dx, 0)); } -void DreamGenContext::loadIntoTemp2() { - loadIntoTemp2((const char *)cs.ptr(dx, 0)); -} - -void DreamGenContext::loadIntoTemp3() { - loadIntoTemp3((const char *)cs.ptr(dx, 0)); -} - void DreamGenContext::loadIntoTemp(const char *fileName) { data.word(kTempgraphics) = standardLoad(fileName); } diff --git a/engines/dreamweb/stubs.h b/engines/dreamweb/stubs.h index 5b47d32c38..09ac9cad9b 100644 --- a/engines/dreamweb/stubs.h +++ b/engines/dreamweb/stubs.h @@ -35,8 +35,6 @@ uint16 standardLoad(const char *fileName, uint16 *outSizeInBytes = NULL); // Returns a segment handle which needs to be freed with deallocatemem for symmetry void *standardLoadCPP(const char *fileName, uint16 *outSizeInBytes = NULL); // And this one should be 'free'd void loadIntoTemp(); - void loadIntoTemp2(); - void loadIntoTemp3(); void loadIntoTemp(const char *fileName); void loadIntoTemp2(const char *fileName); void loadIntoTemp3(const char *fileName); |