diff options
Diffstat (limited to 'audio')
-rw-r--r-- | audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp index db81485426..ad12a4be57 100644 --- a/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp +++ b/audio/softsynth/fmtowns_pc98/towns_pc98_fmsynth.cpp @@ -1173,7 +1173,7 @@ int TownsPC98_FmSynth::readBuffer(int16 *buffer, const int numSamples) { _timers[i].enabled = _registers[0x27][0] & (4 << i); } - render = MIN(render, _timers[i].smpTillCb); + render = MIN<int>(render, _timers[i].smpTillCb); } } |