aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/macventure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/macventure.cpp')
-rw-r--r--engines/macventure/macventure.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/macventure/macventure.cpp b/engines/macventure/macventure.cpp
index 0542665d3c..ef2b7fadb0 100644
--- a/engines/macventure/macventure.cpp
+++ b/engines/macventure/macventure.cpp
@@ -143,11 +143,11 @@ Common::Error MacVentureEngine::run() {
_resourceManager = new Common::MacResManager();
if (!_resourceManager->open(getGameFileName()))
- error("Could not open %s as a resource fork", getGameFileName());
+ error("ENGINE: Could not open %s as a resource fork", getGameFileName());
// Engine-wide loading
if (!loadGlobalSettings())
- error("Could not load the engine settings");
+ error("ENGINE: Could not load the engine settings");
_oldTextEncoding = !loadTextHuffman();
@@ -170,7 +170,7 @@ Common::Error MacVentureEngine::run() {
int directSaveSlotLoading = ConfMan.getInt("save_slot");
if (directSaveSlotLoading >= 0) {
if (loadGameState(directSaveSlotLoading).getCode() != Common::kNoError) {
- error("Could not load game from slot '%d'", directSaveSlotLoading);
+ error("ENGINE: Could not load game from slot '%d'", directSaveSlotLoading);
}
} else {
setNewGameState();