aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound_v1.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2007-10-13 06:57:47 +0000
committerJohannes Schickel2007-10-13 06:57:47 +0000
commitda9479dfb80d1849a75ed106564360e6978e48bb (patch)
tree4a1eeb085f90c423178e82270995640ef122d8e8 /engines/kyra/sound_v1.cpp
parentefcc80dffaf1dcdd4d02cf4417085f9b8a37a4f9 (diff)
downloadscummvm-rg350-da9479dfb80d1849a75ed106564360e6978e48bb.tar.gz
scummvm-rg350-da9479dfb80d1849a75ed106564360e6978e48bb.tar.bz2
scummvm-rg350-da9479dfb80d1849a75ed106564360e6978e48bb.zip
- moved some voice functionallity from KyraEngine_v1 to KyraEngine
HoF: - added voice support - implemented opcodes -> o2_setVocHigh 167 -> o2_getVocHigh 168 -> o2_isVoiceEnabled 170 -> o2_isVoicePlaying 171 -> o2_stopVoicePlaying 172 -> o2_getGameLanguage 173 svn-id: r29201
Diffstat (limited to 'engines/kyra/sound_v1.cpp')
-rw-r--r--engines/kyra/sound_v1.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/engines/kyra/sound_v1.cpp b/engines/kyra/sound_v1.cpp
index 3ac28701e1..9675eb2d33 100644
--- a/engines/kyra/sound_v1.cpp
+++ b/engines/kyra/sound_v1.cpp
@@ -87,14 +87,4 @@ void KyraEngine_v1::snd_voiceWaitForFinish(bool ingame) {
}
}
-void KyraEngine_v1::snd_stopVoice() {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "KyraEngine_v1::snd_stopVoice()");
- _sound->voiceStop();
-}
-
-bool KyraEngine_v1::snd_voiceIsPlaying() {
- debugC(9, kDebugLevelMain | kDebugLevelSound, "KyraEngine_v1::snd_voiceIsPlaying()");
- return _sound->voiceIsPlaying();
-}
-
} // end of namespace Kyra