aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/kyra_v3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/kyra_v3.cpp')
-rw-r--r--engines/kyra/kyra_v3.cpp23
1 files changed, 7 insertions, 16 deletions
diff --git a/engines/kyra/kyra_v3.cpp b/engines/kyra/kyra_v3.cpp
index 971f96c7ff..666de9f478 100644
--- a/engines/kyra/kyra_v3.cpp
+++ b/engines/kyra/kyra_v3.cpp
@@ -244,13 +244,9 @@ void KyraEngine_v3::playMenuAudioFile() {
if (_soundDigital->isPlaying(_musicSoundChannel))
return;
- /*Common::File *handle = new Common::File();
- uint32 temp = 0;
- _res->getFileHandle(_menuAudioFile, &temp, *handle);
- if (handle->isOpen())
- _musicSoundChannel = _soundDigital->playSound(handle, true);
- else
- delete handle;*/
+ Common::SeekableReadStream *stream = _res->getFileStream(_menuAudioFile);
+ if (stream)
+ _musicSoundChannel = _soundDigital->playSound(stream, true);
}
void KyraEngine_v3::playMusicTrack(int track, int force) {
@@ -271,22 +267,17 @@ void KyraEngine_v3::playMusicTrack(int track, int force) {
if (_musicSoundChannel == -1) {
assert(track < _soundListSize && track >= 0);
- /*Common::File *handle = new Common::File();
- uint32 temp = 0;
- _res->getFileHandle(_soundList[track], &temp, *handle);
- if (handle->isOpen())
- _musicSoundChannel = _soundDigital->playSound(handle);
- else
- delete handle;*/
+ Common::SeekableReadStream *stream = _res->getFileStream(_soundList[track]);
+ if (stream)
+ _musicSoundChannel = _soundDigital->playSound(stream);
}
_musicSoundChannel = track;
}
void KyraEngine_v3::stopMusicTrack() {
- if (_musicSoundChannel != -1 && _soundDigital->isPlaying(_musicSoundChannel)) {
+ if (_musicSoundChannel != -1 && _soundDigital->isPlaying(_musicSoundChannel))
_soundDigital->stopSound(_musicSoundChannel);
- }
_curMusicTrack = -1;
_musicSoundChannel = -1;