AUDIO: (FM-TOWNS): Update Comment on Dead Code

This commit is contained in:
D G Turner 2021-10-31 18:51:10 +00:00
parent 80fb7e1416
commit 46ca3865f0

View File

@ -246,16 +246,18 @@ void EuphonyPlayer::reset() {
resetTempo(); 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 0
if (_tempoControlMode == 1) { if (_tempoControlMode == 1) {
if (/*???*/) if (/*???*/)
return; return;
sendTempo(_defaultTempo); }
} else {
#endif #endif
sendTempo(_defaultTempo); sendTempo(_defaultTempo);
//}
resetAllControls(); resetAllControls();
} }