aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/world.cpp')
-rw-r--r--engines/macventure/world.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/macventure/world.cpp b/engines/macventure/world.cpp
index 35cfbd1533..4ef55094bb 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -37,11 +37,11 @@ void World::startNewGame() {
delete _saveGame;
if ((_startGameFileName = _engine->getStartGameFileName()) == "")
- error("Could not load initial game configuration");
+ error("WORLD: Could not load initial game configuration");
Common::File saveGameFile;
if (!saveGameFile.open(_startGameFileName))
- error("Could not load initial game configuration");
+ error("WORLD: Could not load initial game configuration");
debug("Loading save game state from %s", _startGameFileName.c_str());
Common::SeekableReadStream *saveGameRes = saveGameFile.readStream(saveGameFile.size());