MACVENTURE: Add prefixes to error messages

This commit is contained in:
Borja Lorente 2016-08-16 10:40:46 +02:00
parent 234a3b95a2
commit b1eb6da6fa
8 changed files with 14 additions and 14 deletions

View file

@ -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();