aboutsummaryrefslogtreecommitdiff
path: root/engines/access
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/access
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/access')
-rw-r--r--engines/access/resources.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/access/resources.cpp b/engines/access/resources.cpp
index 96eab8b2d4..a7b23eb56d 100644
--- a/engines/access/resources.cpp
+++ b/engines/access/resources.cpp
@@ -41,7 +41,7 @@ bool Resources::load(Common::String &errorMessage) {
Common::File f;
Common::String filename = "access.dat";
if (!f.open(filename.c_str())) {
- errorMessage = Common::String::format(_("Unable to locate the '%s' engine data file. Read the README for instructions."), filename.c_str());
+ errorMessage = Common::String::format(_("Unable to locate the '%s' engine data file."), filename.c_str());
return false;
}
@@ -49,7 +49,7 @@ bool Resources::load(Common::String &errorMessage) {
char buffer[4];
f.read(buffer, 4);
if (strncmp(buffer, "SVMA", 4)) {
- errorMessage = Common::String::format(_("The '%s' engine data file is corrupt. Read the README for instructions."), filename.c_str());
+ errorMessage = Common::String::format(_("The '%s' engine data file is corrupt."), filename.c_str());
return false;
}
@@ -58,7 +58,7 @@ bool Resources::load(Common::String &errorMessage) {
uint version = f.readUint16LE();
if (version != expectedVersion) {
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(), expectedVersion, 0, version, 0);
return false;
}