aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2009-11-24 22:08:34 +0000
committerMax Horn2009-11-24 22:08:34 +0000
commit0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75 (patch)
treecb2809331c69de6b6d45dffa41dadc76f067ea02 /engines
parentbfc553081c5523ccc5ca0c30178decb374c26fbc (diff)
downloadscummvm-rg350-0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75.tar.gz
scummvm-rg350-0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75.tar.bz2
scummvm-rg350-0d9609f7f9515a46a0c2c2dbe446b5c5d63cda75.zip
Fix incorrectly placed doxygen comments; replace Common::ID2string by Common::tag2string
svn-id: r46127
Diffstat (limited to 'engines')
-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 9a2f2fa73f..dd7cced83c 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::ID2string(chunk._type), chunk._size, _filename);
+ warning("Unexpected chunk '%s' of size %d found in file '%s'", Common::tag2string(chunk._type).c_str(), chunk._size, _filename);
}
return false;
diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp
index 764cc445b3..80e159433a 100644
--- a/engines/kyra/script_tim.cpp
+++ b/engines/kyra/script_tim.cpp
@@ -141,7 +141,7 @@ bool TIMInterpreter::callback(Common::IFFChunk &chunk) {
break;
default:
- warning("Unexpected chunk '%s' of size %d found in file '%s'", Common::ID2string(chunk._type), chunk._size, _filename);
+ warning("Unexpected chunk '%s' of size %d found in file '%s'", Common::tag2string(chunk._type).c_str(), chunk._size, _filename);
}
return false;