aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/saveload.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/saveload.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/saveload.cpp')
-rw-r--r--engines/macventure/saveload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/saveload.cpp b/engines/macventure/saveload.cpp
index 54009a1127..a341487cf1 100644
--- a/engines/macventure/saveload.cpp
+++ b/engines/macventure/saveload.cpp
@@ -75,7 +75,7 @@ Common::Error MacVentureEngine::loadGameState(int slot) {
Common::String saveFileName = Common::String::format("%s.%03d", _targetName.c_str(), slot);
Common::InSaveFile *file;
if(!(file = getSaveFileManager()->openForLoading(saveFileName))) {
- error("missing savegame file %s", saveFileName.c_str());
+ error("ENGINE: Missing savegame file %s", saveFileName.c_str());
}
_world->loadGameFrom(file);
reset();