aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/zvision.cpp
diff options
context:
space:
mode:
authorFedor2015-01-17 19:24:21 +0300
committerFedor2015-01-17 19:24:21 +0300
commitb3c204e2ba5350b81690e48fb7a23accaf257d0a (patch)
tree43338448bee5ee90148674660e8c1ac9703db648 /engines/zvision/zvision.cpp
parent9c25e2eea0e257de67c8d8f8cbd3e114585ed72b (diff)
downloadscummvm-rg350-b3c204e2ba5350b81690e48fb7a23accaf257d0a.tar.gz
scummvm-rg350-b3c204e2ba5350b81690e48fb7a23accaf257d0a.tar.bz2
scummvm-rg350-b3c204e2ba5350b81690e48fb7a23accaf257d0a.zip
ZVISION: made error messages more detailed
Diffstat (limited to 'engines/zvision/zvision.cpp')
-rw-r--r--engines/zvision/zvision.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/zvision.cpp b/engines/zvision/zvision.cpp
index 3085a79de8..d50c7d53c4 100644
--- a/engines/zvision/zvision.cpp
+++ b/engines/zvision/zvision.cpp
@@ -186,12 +186,12 @@ void ZVision::initialize() {
if (_gameDescription->gameId == GID_GRANDINQUISITOR) {
if (!_searchManager->loadZix("INQUIS.ZIX"))
- error("Unable to load the game ZIX file");
+ error("Unable to load file INQUIS.ZIX");
} else if (_gameDescription->gameId == GID_NEMESIS) {
if (!_searchManager->loadZix("NEMESIS.ZIX")) {
// The game might not be installed, try MEDIUM.ZIX instead
if (!_searchManager->loadZix("ZNEMSCR/MEDIUM.ZIX"))
- error("Unable to load the game ZIX file");
+ error("Unable to load the file ZNEMSCR/MEDIUM.ZIX");
}
}