diff options
| author | Torbjörn Andersson | 2008-05-17 13:22:12 +0000 | 
|---|---|---|
| committer | Torbjörn Andersson | 2008-05-17 13:22:12 +0000 | 
| commit | f4cc7dfa85871575a50553dda3ee4f601cc603cf (patch) | |
| tree | 9b7dbde350f09bfefd0b872aeb95ccce6948ecde | |
| parent | 2ceb1b257767b1ab7cc4bb1a3799ef25f6786eb1 (diff) | |
| download | scummvm-rg350-f4cc7dfa85871575a50553dda3ee4f601cc603cf.tar.gz scummvm-rg350-f4cc7dfa85871575a50553dda3ee4f601cc603cf.tar.bz2 scummvm-rg350-f4cc7dfa85871575a50553dda3ee4f601cc603cf.zip | |
Loop the Kyra 3 menu music. (The original does.)
svn-id: r32149
| -rw-r--r-- | engines/kyra/kyra_mr.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/kyra/kyra_mr.cpp b/engines/kyra/kyra_mr.cpp index c0c04cb370..07083913da 100644 --- a/engines/kyra/kyra_mr.cpp +++ b/engines/kyra/kyra_mr.cpp @@ -402,7 +402,7 @@ void KyraEngine_MR::playMenuAudioFile() {  	if (_soundDigital->isPlaying(_musicSoundChannel))  		return; -	_musicSoundChannel = _soundDigital->playSound(_menuAudioFile, 0xFF, Audio::Mixer::kMusicSoundType); +	_musicSoundChannel = _soundDigital->playSound(_menuAudioFile, 0xFF, Audio::Mixer::kMusicSoundType, 255, true);  }  void KyraEngine_MR::snd_playWanderScoreViaMap(int track, int force) { | 
