aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/sound.cpp
diff options
context:
space:
mode:
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");
}
}