mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-05 00:01:55 +00:00
Fixed bug #1995033 ("BASS: BG Sound stopped on opening item list"). Apparently
the sound is supposed to be paused and then unpaused, but the pause function is called many more times than the unpause function. In the original, this presumably didn't matter. In ScummVM's mixer, it does. svn-id: r33570
This commit is contained in:
parent
e8cee7823d
commit
117dee5e4a
@ -1025,6 +1025,7 @@ Sound::Sound(Audio::Mixer *mixer, Disk *pDisk, uint8 pVolume) {
|
||||
_mixer = mixer;
|
||||
_saveSounds[0] = _saveSounds[1] = 0xFFFF;
|
||||
_mainSfxVolume = pVolume;
|
||||
_isPaused = false;
|
||||
}
|
||||
|
||||
Sound::~Sound(void) {
|
||||
@ -1254,14 +1255,20 @@ bool Sound::startSpeech(uint16 textNum) {
|
||||
|
||||
void Sound::fnPauseFx(void) {
|
||||
|
||||
_mixer->pauseID(SOUND_CH0, true);
|
||||
_mixer->pauseID(SOUND_CH1, true);
|
||||
if (!_isPaused) {
|
||||
_isPaused = true;
|
||||
_mixer->pauseID(SOUND_CH0, true);
|
||||
_mixer->pauseID(SOUND_CH1, true);
|
||||
}
|
||||
}
|
||||
|
||||
void Sound::fnUnPauseFx(void) {
|
||||
|
||||
_mixer->pauseID(SOUND_CH0, false);
|
||||
_mixer->pauseID(SOUND_CH1, false);
|
||||
if (_isPaused) {
|
||||
_isPaused = false;
|
||||
_mixer->pauseID(SOUND_CH0, false);
|
||||
_mixer->pauseID(SOUND_CH1, false);
|
||||
}
|
||||
}
|
||||
|
||||
} // End of namespace Sky
|
||||
|
@ -89,6 +89,8 @@ private:
|
||||
uint8 *_sampleRates, *_sfxInfo;
|
||||
uint8 _mainSfxVolume;
|
||||
|
||||
bool _isPaused;
|
||||
|
||||
static uint16 _speechConvertTable[8];
|
||||
static SfxQueue _sfxQueue[MAX_QUEUED_FX];
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user