aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorMax Horn2010-03-18 15:04:38 +0000
committerMax Horn2010-03-18 15:04:38 +0000
commit4e99cfc549d404c8c7b9b3e3478e12975039980d (patch)
treea3394c721551b1f9cb0fea3973c2763ba1124c8f /engines/kyra
parenta17bbf3c2e8b9f9983adf2fd84fa8c7525f78cbb (diff)
downloadscummvm-rg350-4e99cfc549d404c8c7b9b3e3478e12975039980d.tar.gz
scummvm-rg350-4e99cfc549d404c8c7b9b3e3478e12975039980d.tar.bz2
scummvm-rg350-4e99cfc549d404c8c7b9b3e3478e12975039980d.zip
Switch from Common::tag2string(foo).c_str() to tag2str(foo)
svn-id: r48276
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 dd7cced83c..d58b04f080 100644
--- a/engines/kyra/script.cpp
+++ b/engines/kyra/script.cpp
@@ -96,7 +96,7 @@ bool EMCInterpreter::callback(Common::IFFChunk &chunk) {
break;
default:
- warning("Unexpected chunk '%s' of size %d found in file '%s'", Common::tag2string(chunk._type).c_str(), chunk._size, _filename);
+ warning("Unexpected chunk '%s' of size %d found in file '%s'", tag2str(chunk._type), chunk._size, _filename);
}
return false;
diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp
index edfd5a37a0..343ea9307b 100644
--- a/engines/kyra/script_tim.cpp
+++ b/engines/kyra/script_tim.cpp
@@ -134,7 +134,7 @@ bool TIMInterpreter::callback(Common::IFFChunk &chunk) {
break;
default:
- warning("Unexpected chunk '%s' of size %d found in file '%s'", Common::tag2string(chunk._type).c_str(), chunk._size, _filename);
+ warning("Unexpected chunk '%s' of size %d found in file '%s'", tag2str(chunk._type), chunk._size, _filename);
}
return false;