diff --git a/src/engine/platform/ay.cpp b/src/engine/platform/ay.cpp index 3b35e282c..30e0e26d3 100644 --- a/src/engine/platform/ay.cpp +++ b/src/engine/platform/ay.cpp @@ -228,7 +228,7 @@ void DivPlatformAY8910::runTFX(int runRate, int advance) { // stupid pitch correction because: // YM2149 half-clock and Sunsoft 5B: timers run an octave too high // on AtomicSSG core timers run 2 octaves too high - if (clockSel || sunsoft) chan[i].tfx.period = chan[i].tfx.period * 2; + if (clockSel || sunsoft) chan[i].tfx.period = chan[i].tfx.period * 2; if (selCore && !intellivision) chan[i].tfx.period = chan[i].tfx.period * 4; } }