diff options
-rw-r--r-- | scumm/resource.cpp | 2 | ||||
-rw-r--r-- | scumm/script_v8.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index d12fd6e958..e736181e80 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -239,7 +239,7 @@ void ScummEngine::askForDisk(const char *filename, int disknum) { #ifdef MACOSX sprintf(buf, "Cannot find file: '%s'\nPlease insert disc %d.\nPress OK to retry, Quit to exit", filename, disknum); #else - sprintf(buf, "Cannot find file: '%s'\nInsert disc %d into drive %s\nPress OK to retry, Quit to exit", filename, disknum, getGameDataPath()); + sprintf(buf, "Cannot find file: '%s'\nInsert disc %d into drive %s\nPress OK to retry, Quit to exit", filename, disknum, _gameDataPath.c_str()); #endif result = displayMessage("Quit", buf); diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index daf5975739..3a3b4a8fb6 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1241,7 +1241,7 @@ void ScummEngine_v8::o8_system() { void ScummEngine_v8::o8_startVideo() { int len = resStrLen(_scriptPointer); - debug(4, "o8_startVideo(%s/%s)", getGameDataPath(), (const char*)_scriptPointer); + debug(4, "o8_startVideo(%s)", (const char*)_scriptPointer); SmushPlayer *sp = new SmushPlayer(this, 1000000 / 12); sp->play((const char*)_scriptPointer); |