aboutsummaryrefslogtreecommitdiff
path: root/engines/lure
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/lure
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/lure')
-rw-r--r--engines/lure/lure.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp
index 245aa96994..8eac519d8c 100644
--- a/engines/lure/lure.cpp
+++ b/engines/lure/lure.cpp
@@ -61,7 +61,7 @@ Common::Error LureEngine::init() {
Common::File f;
VersionStructure version;
if (!f.open(SUPPORT_FILENAME)) {
- GUIError(_("Unable to locate the '%s' engine data file. Read the README for instructions."), SUPPORT_FILENAME);
+ GUIError(_("Unable to locate the '%s' engine data file."), SUPPORT_FILENAME);
return Common::kUnknownError;
}
@@ -70,10 +70,10 @@ Common::Error LureEngine::init() {
f.close();
if (READ_LE_UINT16(&version.id) != 0xffff) {
- GUIError(_("The '%s' engine data file is corrupt. Read the README for instructions."), SUPPORT_FILENAME);
+ GUIError(_("The '%s' engine data file is corrupt."), SUPPORT_FILENAME);
return Common::kUnknownError;
} else if ((version.vMajor != LURE_DAT_MAJOR) || (version.vMinor != LURE_DAT_MINOR)) {
- GUIError(_("Incorrect version of the '%s' engine data file found. Expected %d.%d but got %d.%d. Read the README for instructions."),
+ GUIError(_("Incorrect version of the '%s' engine data file found. Expected %d.%d but got %d.%d."),
SUPPORT_FILENAME, LURE_DAT_MAJOR, LURE_DAT_MINOR,
version.vMajor, version.vMinor);
return Common::kUnknownError;