aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-08-16 10:40:46 +0200
committerBorja Lorente2016-08-19 16:30:23 +0200
commitb1eb6da6fab27b215ffd339ccef7e43169ad0a17 (patch)
tree5c8218e2ae84e6fe27bb419d6065bf428b07d934 /engines/macventure/world.cpp
parent234a3b95a29e3ec11c9c02a2435bf42829550cce (diff)
downloadscummvm-rg350-b1eb6da6fab27b215ffd339ccef7e43169ad0a17.tar.gz
scummvm-rg350-b1eb6da6fab27b215ffd339ccef7e43169ad0a17.tar.bz2
scummvm-rg350-b1eb6da6fab27b215ffd339ccef7e43169ad0a17.zip
MACVENTURE: Add prefixes to error messages
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());