aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/smush_mixer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/smush/smush_mixer.cpp')
-rw-r--r--scumm/smush/smush_mixer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp
index 1ceb1718b3..3c0471e178 100644
--- a/scumm/smush/smush_mixer.cpp
+++ b/scumm/smush/smush_mixer.cpp
@@ -49,7 +49,7 @@ SmushMixer::~SmushMixer() {
}
SmushChannel *SmushMixer::findChannel(int32 track) {
- debug(9, "SmushMixer::findChannel(%d)", track);
+ debugC(DEBUG_SMUSH, "SmushMixer::findChannel(%d)", track);
for (int32 i = 0; i < NUM_CHANNELS; i++) {
if (_channels[i].id == track)
return _channels[i].chan;
@@ -61,7 +61,7 @@ void SmushMixer::addChannel(SmushChannel *c) {
int32 track = c->getTrackIdentifier();
int i;
- debug(9, "SmushMixer::addChannel(%d)", track);
+ debugC(DEBUG_SMUSH, "SmushMixer::addChannel(%d)", track);
for (i = 0; i < NUM_CHANNELS; i++) {
if (_channels[i].id == track)
@@ -86,7 +86,7 @@ void SmushMixer::addChannel(SmushChannel *c) {
}
bool SmushMixer::handleFrame() {
- debug(9, "SmushMixer::handleFrame()");
+ debugC(DEBUG_SMUSH, "SmushMixer::handleFrame()");
for (int i = 0; i < NUM_CHANNELS; i++) {
if (_channels[i].id != -1) {
if (_channels[i].chan->isTerminated()) {
@@ -133,7 +133,7 @@ bool SmushMixer::handleFrame() {
}
bool SmushMixer::stop() {
- debug(9, "SmushMixer::stop()");
+ debugC(DEBUG_SMUSH, "SmushMixer::stop()");
for (int i = 0; i < NUM_CHANNELS; i++) {
if (_channels[i].id != -1) {
delete _channels[i].chan;