aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/inter_v7.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/gob/inter_v7.cpp b/engines/gob/inter_v7.cpp
index 34159bb839..17f2411c8b 100644
--- a/engines/gob/inter_v7.cpp
+++ b/engines/gob/inter_v7.cpp
@@ -406,12 +406,14 @@ void Inter_v7::o7_setINIValue() {
}
void Inter_v7::o7_draw0xA4() {
- Common::String str0 = _vm->_game->_script->evalString();
+ Common::String file = _vm->_game->_script->evalString();
+ if (!file.contains('.'))
+ file += ".LBM";
int16 expr0 = _vm->_game->_script->readValExpr();
int16 expr1 = _vm->_game->_script->readValExpr();
- warning("Addy Stub Draw 0xA4: \"%s\", %d, %d", str0.c_str(), expr0, expr1);
+ warning("Addy Stub Draw 0xA4: \"%s\", %d, %d", file.c_str(), expr0, expr1);
}
void Inter_v7::o7_opendBase() {