aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorJohannes Schickel2009-07-12 08:51:57 +0000
committerJohannes Schickel2009-07-12 08:51:57 +0000
commitc3ce2087bb42ca43f28cdef332ee2772e6feb6c3 (patch)
tree125a200871732a967daacd15769aa124d2f7dd2b /engines/kyra
parentf278432144347c92027914530597df11bdd5a527 (diff)
downloadscummvm-rg350-c3ce2087bb42ca43f28cdef332ee2772e6feb6c3.tar.gz
scummvm-rg350-c3ce2087bb42ca43f28cdef332ee2772e6feb6c3.tar.bz2
scummvm-rg350-c3ce2087bb42ca43f28cdef332ee2772e6feb6c3.zip
Add missing quotation mark to error message.
svn-id: r42406
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/script.cpp2
-rw-r--r--engines/kyra/script_tim.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/script.cpp b/engines/kyra/script.cpp
index 0473f03591..726c013b5a 100644
--- a/engines/kyra/script.cpp
+++ b/engines/kyra/script.cpp
@@ -125,7 +125,7 @@ bool EMCInterpreter::load(const char *filename, EMCData *scriptData, const Commo
error("No DATA chunk found in file: '%s'", filename);
if (stream->err())
- error("Read error while parsing file '%s", filename);
+ error("Read error while parsing file '%s'", filename);
delete stream;
diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp
index 424a62aaf8..bc62e5bd6a 100644
--- a/engines/kyra/script_tim.cpp
+++ b/engines/kyra/script_tim.cpp
@@ -169,7 +169,7 @@ TIM *TIMInterpreter::load(const char *filename, const Common::Array<const TIMOpc
error("No AVTL chunk found in file: '%s'", filename);
if (stream->err())
- error("Read error while parsing file '%s", filename);
+ error("Read error while parsing file '%s'", filename);
delete stream;