aboutsummaryrefslogtreecommitdiff
path: root/engines/toon
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/toon
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/toon')
-rw-r--r--engines/toon/toon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/toon.cpp b/engines/toon/toon.cpp
index b0cbe80cfd..25eb7ad1d4 100644
--- a/engines/toon/toon.cpp
+++ b/engines/toon/toon.cpp
@@ -4927,7 +4927,7 @@ bool ToonEngine::loadToonDat() {
buf[4] = '\0';
if (strcmp(buf, "TOON")) {
- msg = _("File 'toon.dat' is corrupt. Get it from the ScummVM website");
+ msg = Common::String::format(_("File '%s' is corrupt. Get it from the ScummVM website"), filename.c_str());
GUIErrorMessage(msg);
warning("%s", msg.c_str());
return false;