diff options
author | Ben Castricum | 2016-12-05 21:07:11 +0100 |
---|---|---|
committer | Ben Castricum | 2016-12-06 09:38:19 +0100 |
commit | eb7ffb1e2cce1c77bebc156563d6d46d223b3885 (patch) | |
tree | fe5cda67c41997a410b3f60056df7c43aa5426f5 /engines/lure | |
parent | e1ec91b69abe730f297dfe1fe1740f4b2a13d8da (diff) | |
download | scummvm-rg350-eb7ffb1e2cce1c77bebc156563d6d46d223b3885.tar.gz scummvm-rg350-eb7ffb1e2cce1c77bebc156563d6d46d223b3885.tar.bz2 scummvm-rg350-eb7ffb1e2cce1c77bebc156563d6d46d223b3885.zip |
ALL: Unify 'corrupted engine data' message
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/lure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp index 9fd8372f29..f798ddbdb8 100644 --- a/engines/lure/lure.cpp +++ b/engines/lure/lure.cpp @@ -70,7 +70,7 @@ Common::Error LureEngine::init() { f.close(); if (READ_LE_UINT16(&version.id) != 0xffff) { - GUIError("Error validating %s - file is invalid or out of date", SUPPORT_FILENAME); + GUIError(_("File '%s' is corrupt. Get it from the ScummVM website"), SUPPORT_FILENAME); return Common::kUnknownError; } else if ((version.vMajor != LURE_DAT_MAJOR) || (version.vMinor != LURE_DAT_MINOR)) { GUIError("Incorrect version of %s file - expected %d.%d but got %d.%d", |