diff options
author | Filippos Karapetis | 2015-01-17 19:15:16 +0200 |
---|---|---|
committer | Filippos Karapetis | 2015-01-17 19:15:16 +0200 |
commit | 8e07aae50462b9d3fee007a4832f75ab68b631c9 (patch) | |
tree | 43338448bee5ee90148674660e8c1ac9703db648 /engines | |
parent | 9c25e2eea0e257de67c8d8f8cbd3e114585ed72b (diff) | |
parent | b3c204e2ba5350b81690e48fb7a23accaf257d0a (diff) | |
download | scummvm-rg350-8e07aae50462b9d3fee007a4832f75ab68b631c9.tar.gz scummvm-rg350-8e07aae50462b9d3fee007a4832f75ab68b631c9.tar.bz2 scummvm-rg350-8e07aae50462b9d3fee007a4832f75ab68b631c9.zip |
Merge pull request #565 from fedor4ever/master
ZVISION: made error messages 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"); } } |