diff options
-rw-r--r-- | sound.cpp | 5 | ||||
-rw-r--r-- | sound/mixer.cpp | 2 |
2 files changed, 0 insertions, 7 deletions
@@ -192,8 +192,6 @@ int Scumm::startTalkSound(uint32 offset, uint32 b, int mode) byte file_byte, file_byte_2; int size; - debug(1, "Starting sound %d.", offset); - if (!_sfxFile) { warning("startTalkSound: SFX file is not open"); return -1; @@ -234,7 +232,6 @@ int Scumm::startTalkSound(uint32 offset, uint32 b, int mode) fileRead((FILE *) _sfxFile, &file_byte, sizeof(file_byte)); fileRead((FILE *) _sfxFile, &file_byte_2, sizeof(file_byte_2)); _mouthSyncTimes[i++] = file_byte | (file_byte_2 << 8); - debug(1, " - %d (0x%08x)", _mouthSyncTimes[i - 1], _mouthSyncTimes[i - 1]); num--; } _mouthSyncTimes[i] = 0xFFFF; @@ -277,8 +274,6 @@ int Scumm::isSoundRunning(int sound) IMuse *se; int i; - debug(1, " -> %d", sound); - if (sound == current_cd_sound) return _system->poll_cdrom(); diff --git a/sound/mixer.cpp b/sound/mixer.cpp index 90b55a0a0e..d51393618a 100644 --- a/sound/mixer.cpp +++ b/sound/mixer.cpp @@ -310,8 +310,6 @@ void SoundMixer::Channel_MP3::destroy() { mad_frame_finish(&_frame); mad_stream_finish(&_stream); - debug(1, "Sound finished"); - delete this; } |