aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo
diff options
context:
space:
mode:
authorBen Castricum2016-12-05 21:07:11 +0100
committerBen Castricum2016-12-06 09:38:19 +0100
commiteb7ffb1e2cce1c77bebc156563d6d46d223b3885 (patch)
treefe5cda67c41997a410b3f60056df7c43aa5426f5 /engines/hugo
parente1ec91b69abe730f297dfe1fe1740f4b2a13d8da (diff)
downloadscummvm-rg350-eb7ffb1e2cce1c77bebc156563d6d46d223b3885.tar.gz
scummvm-rg350-eb7ffb1e2cce1c77bebc156563d6d46d223b3885.tar.bz2
scummvm-rg350-eb7ffb1e2cce1c77bebc156563d6d46d223b3885.zip
ALL: Unify 'corrupted engine data' message
Diffstat (limited to 'engines/hugo')
-rw-r--r--engines/hugo/hugo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index e129727e84..0b4ed33bae 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -445,7 +445,7 @@ bool HugoEngine::loadHugoDat() {
in.read(buf, 4);
if (memcmp(buf, "HUGO", 4)) {
- Common::String errorMessage = "File 'hugo.dat' is corrupt. Get it from the ScummVM website";
+ Common::String errorMessage = Common::String::format(_("File '%s' is corrupt. Get it from the ScummVM website"), filename.c_str());
GUIErrorMessage(errorMessage);
return false;
}