aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorFilippos Karapetis2009-07-07 20:43:27 +0000
committerFilippos Karapetis2009-07-07 20:43:27 +0000
commita62b26ea8026666fd658337bcc061c1c4e2ab3f9 (patch)
treead7b32d3f02ea0229d254a376a92e10cf7f746d8 /engines/sci/engine
parentee15f8f51ad5ec1a6fd776c4a12fb4167dfec8ed (diff)
downloadscummvm-rg350-a62b26ea8026666fd658337bcc061c1c4e2ab3f9.tar.gz
scummvm-rg350-a62b26ea8026666fd658337bcc061c1c4e2ab3f9.tar.bz2
scummvm-rg350-a62b26ea8026666fd658337bcc061c1c4e2ab3f9.zip
Silenced the very chatty song iterator console messages by converting them to appropriate debug messages
svn-id: r42240
Diffstat (limited to 'engines/sci/engine')
-rw-r--r--engines/sci/engine/ksound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/ksound.cpp b/engines/sci/engine/ksound.cpp
index ba70bf9f73..7614b2bc10 100644
--- a/engines/sci/engine/ksound.cpp
+++ b/engines/sci/engine/ksound.cpp
@@ -940,14 +940,14 @@ reg_t kDoSound_SCI1(EngineState *s, int funct_nr, int argc, reg_t *argv) {
case SI_ABSOLUTE_CUE:
signal = cue;
- fprintf(stderr, "[CUE] %04x:%04x Absolute Cue: %d\n",
+ debugC(2, kDebugLevelSound, "[CUE] %04x:%04x Absolute Cue: %d\n",
PRINT_REG(obj), signal);
PUT_SEL32V(obj, signal, signal);
break;
case SI_RELATIVE_CUE:
- fprintf(stderr, "[CUE] %04x:%04x Relative Cue: %d\n",
+ debugC(2, kDebugLevelSound, "[CUE] %04x:%04x Relative Cue: %d\n",
PRINT_REG(obj), cue);
PUT_SEL32V(obj, dataInc, cue);