diff options
Diffstat (limited to 'engines/dreamweb/vgagrafx.cpp')
-rw-r--r-- | engines/dreamweb/vgagrafx.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/engines/dreamweb/vgagrafx.cpp b/engines/dreamweb/vgagrafx.cpp index 440688dce0..4848e148e8 100644 --- a/engines/dreamweb/vgagrafx.cpp +++ b/engines/dreamweb/vgagrafx.cpp @@ -21,6 +21,7 @@ */ #include "dreamweb/dreamweb.h" +#include "dreamweb/stubs.h" #include "engines/util.h" #include "graphics/surface.h" @@ -210,15 +211,6 @@ void DreamGenContext::setMode() { initGraphics(320, 200, false); } -static Common::String getFilename(Context &context) { - uint16 name_ptr = context.dx; - Common::String name; - uint8 c; - while((c = context.cs.byte(name_ptr++)) != 0) - name += (char)c; - return name; -} - void DreamGenContext::showPCX(const Common::String &name) { Common::File pcxFile; |