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/drascula | |
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/drascula')
-rw-r--r-- | engines/drascula/drascula.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index efcb36c0ae..655af480f2 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -962,7 +962,7 @@ bool DrasculaEngine::loadDrasculaDat() { in.open(filename.c_str()); if (!in.isOpen()) { - Common::String errorMessage = Common::String::format(_("Unable to locate the '%s' engine data file. Read the README for instructions."), filename.c_str()); + Common::String errorMessage = Common::String::format(_("Unable to locate the '%s' engine data file."), filename.c_str()); GUIErrorMessage(errorMessage); warning("%s", errorMessage.c_str()); @@ -976,7 +976,7 @@ bool DrasculaEngine::loadDrasculaDat() { buf[8] = '\0'; if (strcmp(buf, "DRASCULA") != 0) { - Common::String errorMessage = Common::String::format(_("The '%s' engine data file is corrupt. Read the README for instructions."), filename.c_str()); + Common::String errorMessage = Common::String::format(_("The '%s' engine data file is corrupt."), filename.c_str()); GUIErrorMessage(errorMessage); warning("%s", errorMessage.c_str()); @@ -987,7 +987,7 @@ bool DrasculaEngine::loadDrasculaDat() { if (ver != DRASCULA_DAT_VER) { Common::String errorMessage = 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."), filename.c_str(), DRASCULA_DAT_VER, 0, ver, 0); GUIErrorMessage(errorMessage); warning("%s", errorMessage.c_str()); |