diff options
author | Ben Castricum | 2016-12-06 10:43:39 +0100 |
---|---|---|
committer | Ben Castricum | 2016-12-06 14:16:37 +0100 |
commit | 55512414dd27dd9e19a1be0714b2b25209be1669 (patch) | |
tree | 48027d79c566a79f935119ae0b79046d86327872 /engines/mortevielle | |
parent | 1cf3f50b7429483409e16994a21c040235abd261 (diff) | |
download | scummvm-rg350-55512414dd27dd9e19a1be0714b2b25209be1669.tar.gz scummvm-rg350-55512414dd27dd9e19a1be0714b2b25209be1669.tar.bz2 scummvm-rg350-55512414dd27dd9e19a1be0714b2b25209be1669.zip |
ALL: Change instructions for engine data file issues
The engine data files should be included in the package, so downloading
may not be the best suggestion. Instead refer to the README.
Diffstat (limited to 'engines/mortevielle')
-rw-r--r-- | engines/mortevielle/mortevielle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mortevielle/mortevielle.cpp b/engines/mortevielle/mortevielle.cpp index fbfde901ca..203eea53b6 100644 --- a/engines/mortevielle/mortevielle.cpp +++ b/engines/mortevielle/mortevielle.cpp @@ -303,7 +303,7 @@ Common::ErrorCode MortevielleEngine::loadMortDat() { // Open the mort.dat file if (!f.open(MORT_DAT)) { - Common::String msg = Common::String::format(_("You're missing the '%s' file. Get it from the ScummVM website"), MORT_DAT); + Common::String msg = Common::String::format(_("Unable to locate the '%s' engine data file. Read the README for instructions."), MORT_DAT); GUIErrorMessage(msg); return Common::kReadingFailed; } @@ -312,7 +312,7 @@ Common::ErrorCode MortevielleEngine::loadMortDat() { char fileId[4]; f.read(fileId, 4); if (strncmp(fileId, "MORT", 4) != 0) { - Common::String msg = Common::String::format(_("File '%s' is corrupt. Get it from the ScummVM website"), MORT_DAT); + Common::String msg = Common::String::format(_("The '%s' engine data file is corrupt. Read the README for instructions."), MORT_DAT); GUIErrorMessage(msg); return Common::kReadingFailed; } @@ -323,7 +323,7 @@ Common::ErrorCode MortevielleEngine::loadMortDat() { if (majVer < MORT_DAT_REQUIRED_VERSION) { Common::String msg = Common::String::format( - _("Incorrect version of the '%s' file found. Expected %d.%d but got %d.%d. Get it from the ScummVM website"), + _("Incorrect version of the '%s' engine data file found. Expected %d.%d but got %d.%d. Read the README for instructions."), MORT_DAT, MORT_DAT_REQUIRED_VERSION, 0, majVer, minVer); GUIErrorMessage(msg); return Common::kReadingFailed; |