Silenced the very chatty song iterator console messages by converting them to appropriate debug messages

svn-id: r42240
This commit is contained in:
Filippos Karapetis 2009-07-07 20:43:27 +00:00
parent ee15f8f51a
commit a62b26ea80
3 changed files with 15 additions and 14 deletions

View file

@ -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);