aboutsummaryrefslogtreecommitdiff
path: root/sound.cpp
diff options
context:
space:
mode:
authorLionel Ulmer2002-04-26 17:22:58 +0000
committerLionel Ulmer2002-04-26 17:22:58 +0000
commitf24777a998a97df46cc9261fa2fb82243a69a487 (patch)
tree0a75a790a34a02c69312a73431b4b5dacb0fb548 /sound.cpp
parent8fccbb06123e57b3f38e1b5f05f71b5b776a211f (diff)
downloadscummvm-rg350-f24777a998a97df46cc9261fa2fb82243a69a487.tar.gz
scummvm-rg350-f24777a998a97df46cc9261fa2fb82243a69a487.tar.bz2
scummvm-rg350-f24777a998a97df46cc9261fa2fb82243a69a487.zip
Remove useless debug code.
svn-id: r4094
Diffstat (limited to 'sound.cpp')
-rw-r--r--sound.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/sound.cpp b/sound.cpp
index ddd0c1bbaa..4f4cde0dff 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -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();