diff options
author | Fedor | 2015-01-17 19:24:21 +0300 |
---|---|---|
committer | Fedor | 2015-01-17 19:24:21 +0300 |
commit | b3c204e2ba5350b81690e48fb7a23accaf257d0a (patch) | |
tree | 43338448bee5ee90148674660e8c1ac9703db648 /engines | |
parent | 9c25e2eea0e257de67c8d8f8cbd3e114585ed72b (diff) | |
download | scummvm-rg350-b3c204e2ba5350b81690e48fb7a23accaf257d0a.tar.gz scummvm-rg350-b3c204e2ba5350b81690e48fb7a23accaf257d0a.tar.bz2 scummvm-rg350-b3c204e2ba5350b81690e48fb7a23accaf257d0a.zip |
ZVISION: made error messages more detailed
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/zvision.cpp | 4 |
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"); } } |