aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parallaction_ns.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-09-16 08:43:34 +0000
committerNicola Mettifogo2007-09-16 08:43:34 +0000
commitc37de0131b9f1ed5d8c9c21291d34b5858bc1727 (patch)
tree7ee01a59fb789af2724a612a5cd1c263bb51ff1a /engines/parallaction/parallaction_ns.cpp
parente4c51dfe7527f05a169e9df0af036a865336a726 (diff)
downloadscummvm-rg350-c37de0131b9f1ed5d8c9c21291d34b5858bc1727.tar.gz
scummvm-rg350-c37de0131b9f1ed5d8c9c21291d34b5858bc1727.tar.bz2
scummvm-rg350-c37de0131b9f1ed5d8c9c21291d34b5858bc1727.zip
Revised debug levels and added many debug strings for parsers.
svn-id: r28921
Diffstat (limited to 'engines/parallaction/parallaction_ns.cpp')
-rw-r--r--engines/parallaction/parallaction_ns.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/parallaction/parallaction_ns.cpp b/engines/parallaction/parallaction_ns.cpp
index 6775553887..46161c5021 100644
--- a/engines/parallaction/parallaction_ns.cpp
+++ b/engines/parallaction/parallaction_ns.cpp
@@ -228,7 +228,7 @@ int Parallaction_ns::go() {
is commented out, and would definitely crash the current implementation.
*/
void Parallaction_ns::changeLocation(char *location) {
- debugC(1, kDebugLocation, "changeLocation(%s)", location);
+ debugC(1, kDebugExec, "changeLocation(%s)", location);
_soundMan->playLocationMusic(location);
@@ -323,14 +323,14 @@ void Parallaction_ns::changeLocation(char *location) {
if (_hasLocationSound)
_soundMan->playSfx(_locationSound, 0, true);
- debugC(1, kDebugLocation, "changeLocation() done");
+ debugC(1, kDebugExec, "changeLocation() done");
return;
}
void Parallaction_ns::changeCharacter(const char *name) {
- debugC(1, kDebugLocation, "changeCharacter(%s)", name);
+ debugC(1, kDebugExec, "changeCharacter(%s)", name);
char baseName[20];
if (IS_MINI_CHARACTER(name)) {
@@ -374,7 +374,7 @@ void Parallaction_ns::changeCharacter(const char *name) {
strcpy(_characterName1, fullName);
- debugC(1, kDebugLocation, "changeCharacter() done");
+ debugC(1, kDebugExec, "changeCharacter() done");
return;
}