diff --git a/audio/softsynth/fmtowns_pc98/towns_euphony.cpp b/audio/softsynth/fmtowns_pc98/towns_euphony.cpp index fed6d4a0e2e..732491a043f 100644 --- a/audio/softsynth/fmtowns_pc98/towns_euphony.cpp +++ b/audio/softsynth/fmtowns_pc98/towns_euphony.cpp @@ -246,16 +246,18 @@ void EuphonyPlayer::reset() { resetTempo(); - // FIXME: Implement correct code for _tempoControlMode == 1 + // NB: Original did _tempoControlMode == 1 check here. + // Not required as this was the original driver's offering of + // alternative methods for the timed update calllbacks. + // Not required in the ScummVM implmentation as the outcome is + // identical. #if 0 if (_tempoControlMode == 1) { if (/*???*/) return; - sendTempo(_defaultTempo); - } else { + } #endif - sendTempo(_defaultTempo); - //} + sendTempo(_defaultTempo); resetAllControls(); }