aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/sound.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-07-28 00:36:53 +0300
committerEugene Sandulenko2016-07-28 00:37:32 +0300
commit6ac435099c0ccdeb55fc0e5c195b92d68ed9344e (patch)
tree724510d3e7f25ecce84ce6f726d06a8dc5878638 /engines/fullpipe/sound.cpp
parent1fb5f55b704ae57ddc3c103a22ab466cf93aa94a (diff)
downloadscummvm-rg350-6ac435099c0ccdeb55fc0e5c195b92d68ed9344e.tar.gz
scummvm-rg350-6ac435099c0ccdeb55fc0e5c195b92d68ed9344e.tar.bz2
scummvm-rg350-6ac435099c0ccdeb55fc0e5c195b92d68ed9344e.zip
FULLPIPE: Split all debug output by channels
Diffstat (limited to 'engines/fullpipe/sound.cpp')
-rw-r--r--engines/fullpipe/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/sound.cpp b/engines/fullpipe/sound.cpp
index c82c2c414c..6bf85e7dce 100644
--- a/engines/fullpipe/sound.cpp
+++ b/engines/fullpipe/sound.cpp
@@ -44,7 +44,7 @@ SoundList::SoundList() {
}
bool SoundList::load(MfcArchive &file, char *fname) {
- debug(5, "SoundList::load()");
+ debugC(5, kDebugLoading, "SoundList::load()");
_soundItemsCount = file.readUint32LE();
_soundItems = (Sound **)calloc(_soundItemsCount, sizeof(Sound *));
@@ -107,7 +107,7 @@ Sound::~Sound() {
}
bool Sound::load(MfcArchive &file, NGIArchive *archive) {
- debug(5, "Sound::load()");
+ debugC(5, kDebugLoading, "Sound::load()");
MemoryObject::load(file);