From ebaab44cd16ae784cebb66b7cf220842808a8bde Mon Sep 17 00:00:00 2001 From: Ben Castricum Date: Thu, 8 Dec 2016 10:22:47 +0100 Subject: ALL: Leave out instructions for engine data issues --- engines/toon/toon.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/toon') diff --git a/engines/toon/toon.cpp b/engines/toon/toon.cpp index c17b44ce95..dc1c515e1c 100644 --- a/engines/toon/toon.cpp +++ b/engines/toon/toon.cpp @@ -4915,7 +4915,7 @@ bool ToonEngine::loadToonDat() { in.open(filename.c_str()); if (!in.isOpen()) { - msg = Common::String::format(_("Unable to locate the '%s' engine data file. Read the README for instructions."), filename.c_str()); + msg = Common::String::format(_("Unable to locate the '%s' engine data file."), filename.c_str()); GUIErrorMessage(msg); warning("%s", msg.c_str()); return false; @@ -4927,7 +4927,7 @@ bool ToonEngine::loadToonDat() { buf[4] = '\0'; if (strcmp(buf, "TOON")) { - msg = Common::String::format(_("The '%s' engine data file is corrupt. Read the README for instructions."), filename.c_str()); + msg = Common::String::format(_("The '%s' engine data file is corrupt."), filename.c_str()); GUIErrorMessage(msg); warning("%s", msg.c_str()); return false; @@ -4938,7 +4938,7 @@ bool ToonEngine::loadToonDat() { if ((majVer != TOON_DAT_VER_MAJ) || (minVer != TOON_DAT_VER_MIN)) { 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."), filename.c_str(), TOON_DAT_VER_MAJ, TOON_DAT_VER_MIN, majVer, minVer); GUIErrorMessage(msg); warning("%s", msg.c_str()); -- cgit v1.2.3