diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/TIA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/TIA.cs index 4c6ef5f20d..2fea119618 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/TIA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/TIA.cs @@ -12,7 +12,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk private bool _doTicks; - private byte _hsyncCnt; + public int _hsyncCnt; private int _capChargeStart; private bool _capCharging; public int AudioClocks; // not savestated @@ -37,7 +37,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk public void Execute(int cycles) { // do the audio sampling - if (_hsyncCnt == 36 || _hsyncCnt == 148) + if (_hsyncCnt == 113 || _hsyncCnt == 340) { LocalAudioCycles[AudioClocks] += (short)(AUD[0].Cycle() / 2); LocalAudioCycles[AudioClocks] += (short)(AUD[1].Cycle() / 2);