aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo
diff options
context:
space:
mode:
authorBen Castricum2016-12-08 10:22:47 +0100
committerBen Castricum2016-12-08 13:38:56 +0100
commitebaab44cd16ae784cebb66b7cf220842808a8bde (patch)
tree99cfce8b2ece92a04ed4ead23f49ae14f712971c /engines/hugo
parent722e52e27a339a5051e4a98b884dde41a95ed091 (diff)
downloadscummvm-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/hugo')
-rw-r--r--engines/hugo/hugo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index b7ad700059..6881278cee 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -434,7 +434,7 @@ bool HugoEngine::loadHugoDat() {
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());
return false;
@@ -445,7 +445,7 @@ bool HugoEngine::loadHugoDat() {
in.read(buf, 4);
if (memcmp(buf, "HUGO", 4)) {
- 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);
return false;
}
@@ -455,7 +455,7 @@ bool HugoEngine::loadHugoDat() {
if ((majVer != HUGO_DAT_VER_MAJ) || (minVer != HUGO_DAT_VER_MIN)) {
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(),HUGO_DAT_VER_MAJ, HUGO_DAT_VER_MIN, majVer, minVer);
GUIErrorMessage(errorMessage);
return false;