aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/sound.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/sound.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/sound.cpp')
-rw-r--r--engines/parallaction/sound.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/sound.cpp b/engines/parallaction/sound.cpp
index ecfde1d741..9b8e179ccb 100644
--- a/engines/parallaction/sound.cpp
+++ b/engines/parallaction/sound.cpp
@@ -281,14 +281,14 @@ void DosSoundMan::playLocationMusic(const char *location) {
if (_musicData1 != 0) {
playCharacterMusic(_vm->_characterName);
_musicData1 = 0;
- debugC(2, kDebugLocation, "changeLocation: started character specific music");
+ debugC(2, kDebugExec, "changeLocation: started character specific music");
}
if (!scumm_stricmp(location, "night") || !scumm_stricmp(location, "intsushi")) {
setMusicFile("nuts");
playMusic();
- debugC(2, kDebugLocation, "changeLocation: started music 'soft'");
+ debugC(2, kDebugExec, "changeLocation: started music 'soft'");
}
if (!scumm_stricmp(location, "museo") ||
@@ -302,7 +302,7 @@ void DosSoundMan::playLocationMusic(const char *location) {
stopMusic();
_musicData1 = 1;
- debugC(2, kDebugLocation, "changeLocation: music stopped");
+ debugC(2, kDebugExec, "changeLocation: music stopped");
}
}