aboutsummaryrefslogtreecommitdiff
path: root/engines/tony
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/tony
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/tony')
-rw-r--r--engines/tony/tony.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/tony.cpp b/engines/tony/tony.cpp
index a3ba9c0f0c..c3ae24b70d 100644
--- a/engines/tony/tony.cpp
+++ b/engines/tony/tony.cpp
@@ -207,7 +207,7 @@ bool TonyEngine::loadTonyDat() {
buf[4] = '\0';
if (strcmp(buf, "TONY")) {
- msg = "File 'tony.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;