diff options
author | Ben Castricum | 2016-12-08 10:22:47 +0100 |
---|---|---|
committer | Ben Castricum | 2016-12-08 13:38:56 +0100 |
commit | ebaab44cd16ae784cebb66b7cf220842808a8bde (patch) | |
tree | 99cfce8b2ece92a04ed4ead23f49ae14f712971c /engines/mortevielle | |
parent | 722e52e27a339a5051e4a98b884dde41a95ed091 (diff) | |
download | scummvm-rg350-ebaab44cd16ae784cebb66b7cf220842808a8bde.tar.gz scummvm-rg350-ebaab44cd16ae784cebb66b7cf220842808a8bde.tar.bz2 scummvm-rg350-ebaab44cd16ae784cebb66b7cf220842808a8bde.zip |
ALL: Leave out instructions for engine data issues
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 203eea53b6..59004cba7f 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(_("Unable to locate the '%s' engine data file. Read the README for instructions."), MORT_DAT); + Common::String msg = Common::String::format(_("Unable to locate the '%s' engine data file."), 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(_("The '%s' engine data file is corrupt. Read the README for instructions."), MORT_DAT); + Common::String msg = Common::String::format(_("The '%s' engine data file is corrupt."), 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' engine data file found. Expected %d.%d but got %d.%d. Read the README for instructions."), + _("Incorrect version of the '%s' engine data file found. Expected %d.%d but got %d.%d."), MORT_DAT, MORT_DAT_REQUIRED_VERSION, 0, majVer, minVer); GUIErrorMessage(msg); return Common::kReadingFailed; |