aboutsummaryrefslogtreecommitdiff
path: root/engines/sky
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/sky
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/sky')
-rw-r--r--engines/sky/compact.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sky/compact.cpp b/engines/sky/compact.cpp
index c04a2eae0d..ab244c1f84 100644
--- a/engines/sky/compact.cpp
+++ b/engines/sky/compact.cpp
@@ -128,7 +128,7 @@ SkyCompact::SkyCompact() {
_cptFile = new Common::File();
Common::String filename = "sky.cpt";
if (!_cptFile->open(filename.c_str())) {
- Common::String msg = Common::String::format(_("Unable to locate the '%s' engine data file. Read the README for instructions."), filename.c_str());
+ Common::String msg = Common::String::format(_("Unable to locate the '%s' engine data file."), filename.c_str());
GUIErrorMessage(msg);
error("%s", msg.c_str());
}
@@ -138,7 +138,7 @@ SkyCompact::SkyCompact() {
error("unknown \"sky.cpt\" version");
if (SKY_CPT_SIZE != _cptFile->size()) {
- GUI::MessageDialog dialog(_("The \"sky.cpt\" file has an incorrect size.\nPlease (re)download it from www.scummvm.org"), _("OK"), NULL);
+ GUI::MessageDialog dialog(_("The \"sky.cpt\" engine data file has an incorrect size."), _("OK"), NULL);
dialog.runModal();
error("Incorrect sky.cpt size (%d, expected: %d)", _cptFile->size(), SKY_CPT_SIZE);
}