aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound_lok.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-05-19 01:13:29 +0000
committerJohannes Schickel2009-05-19 01:13:29 +0000
commit7561bd9dfbf325a15d330caef00438cafc9f7ab3 (patch)
tree9dc0d331d5bf4fdc3f234e28b529bc643519bfe0 /engines/kyra/sound_lok.cpp
parent136fcb3810c556c3a5d0e71ac1cf878c7538eb50 (diff)
downloadscummvm-rg350-7561bd9dfbf325a15d330caef00438cafc9f7ab3.tar.gz
scummvm-rg350-7561bd9dfbf325a15d330caef00438cafc9f7ab3.tar.bz2
scummvm-rg350-7561bd9dfbf325a15d330caef00438cafc9f7ab3.zip
Remov lots of superfluous debug output.
svn-id: r40715
Diffstat (limited to 'engines/kyra/sound_lok.cpp')
-rw-r--r--engines/kyra/sound_lok.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/kyra/sound_lok.cpp b/engines/kyra/sound_lok.cpp
index 284a4df613..6645c57f32 100644
--- a/engines/kyra/sound_lok.cpp
+++ b/engines/kyra/sound_lok.cpp
@@ -29,7 +29,6 @@
namespace Kyra {
void KyraEngine_LoK::snd_playSoundEffect(int track, int volume) {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "KyraEngine_LoK::snd_playSoundEffect(%d, %d)", track, volume);
if ((_flags.platform == Common::kPlatformFMTowns || _flags.platform == Common::kPlatformPC98) && track == 49) {
snd_playWanderScoreViaMap(56, 1);
return;
@@ -39,7 +38,6 @@ void KyraEngine_LoK::snd_playSoundEffect(int track, int volume) {
}
void KyraEngine_LoK::snd_playWanderScoreViaMap(int command, int restart) {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "KyraEngine_LoK::snd_playWanderScoreViaMap(%d, %d)", command, restart);
if (restart)
_lastMusicCommand = -1;
@@ -72,7 +70,6 @@ void KyraEngine_LoK::snd_playWanderScoreViaMap(int command, int restart) {
}
void KyraEngine_LoK::snd_playVoiceFile(int id) {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "KyraEngine_LoK::snd_playVoiceFile(%d)", id);
char vocFile[9];
snprintf(vocFile, sizeof(vocFile), "%03d", id);
_speechFile = vocFile;
@@ -80,7 +77,6 @@ void KyraEngine_LoK::snd_playVoiceFile(int id) {
}
void KyraEngine_LoK::snd_voiceWaitForFinish(bool ingame) {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "KyraEngine_LoK::snd_voiceWaitForFinish(%d)", ingame);
while (_sound->voiceIsPlaying() && !skipFlag()) {
if (ingame)
delay(10, true);
@@ -90,7 +86,6 @@ void KyraEngine_LoK::snd_voiceWaitForFinish(bool ingame) {
}
uint32 KyraEngine_LoK::snd_getVoicePlayTime() {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "KyraEngine_LoK::snd_getVoicePlayTime()");
if (!snd_voiceIsPlaying())
return 0;
return (_speechPlayTime != -1 ? _speechPlayTime : 0);