diff options
author | athrxx | 2019-11-10 15:24:41 +0100 |
---|---|---|
committer | athrxx | 2019-12-18 20:50:39 +0100 |
commit | 21b5f9262c14114f457120a0504a55fc3ca96489 (patch) | |
tree | cebb9eae8918ef1069cdbb2171021c71f4606ae9 /engines/scumm/imuse/drivers | |
parent | 1083b94cbfbf687b40d487ab2530be9fb1556b1a (diff) | |
download | scummvm-rg350-21b5f9262c14114f457120a0504a55fc3ca96489.tar.gz scummvm-rg350-21b5f9262c14114f457120a0504a55fc3ca96489.tar.bz2 scummvm-rg350-21b5f9262c14114f457120a0504a55fc3ca96489.zip |
AUDIO: (FM-TOWNS/PC-98) - fix regression from 0e734722
My commit 0e734722 causes lockups in SCUMM (sometimes) and SCI (very often). I didn't like the way I had fixed this before, but in the end I now had to do it in a similar way.
Diffstat (limited to 'engines/scumm/imuse/drivers')
-rw-r--r-- | engines/scumm/imuse/drivers/fmtowns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/imuse/drivers/fmtowns.cpp b/engines/scumm/imuse/drivers/fmtowns.cpp index cf15fcdb25..a85b4597e4 100644 --- a/engines/scumm/imuse/drivers/fmtowns.cpp +++ b/engines/scumm/imuse/drivers/fmtowns.cpp @@ -827,7 +827,7 @@ const uint8 TownsMidiInputChannel::_programAdjustLevel[] = { MidiDriver_TOWNS::MidiDriver_TOWNS(Audio::Mixer *mixer) : _timerProc(0), _timerProcPara(0), _channels(0), _out(0), _baseTempo(10080), _chanState(0), _operatorLevelTable(0), _tickCounter(0), _rand(1), _allocCurPos(0), _isOpen(false) { - _intf = new TownsAudioInterface(mixer, this); + _intf = new TownsAudioInterface(mixer, this, true); _channels = new TownsMidiInputChannel*[32]; for (int i = 0; i < 32; i++) |