aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-08-16 12:14:20 +0200
committerBorja Lorente2016-08-19 16:30:24 +0200
commit34fdec37b26c7328f07f6251263f1c1afc7d1629 (patch)
treeb01e2602bd2121d1dd15ebc2427123acf65cbcef /engines/macventure/world.cpp
parentf928deebaf09e9498da9658f36bf318d67660733 (diff)
downloadscummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.tar.gz
scummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.tar.bz2
scummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.zip
MACVENTURE: Fix debug messages
Diffstat (limited to 'engines/macventure/world.cpp')
-rw-r--r--engines/macventure/world.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/world.cpp b/engines/macventure/world.cpp
index 4ef55094bb..c514ebd535 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -43,7 +43,7 @@ void World::startNewGame() {
if (!saveGameFile.open(_startGameFileName))
error("WORLD: Could not load initial game configuration");
- debug("Loading save game state from %s", _startGameFileName.c_str());
+ debugC(2, kMVDebugMain, "Loading save game state from %s", _startGameFileName.c_str());
Common::SeekableReadStream *saveGameRes = saveGameFile.readStream(saveGameFile.size());
_saveGame = new SaveGame(_engine, saveGameRes);