From 39254cb0d2dab48c8186ae66344f5bddbd60fc3a Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 22 Jul 2017 13:37:40 -0400 Subject: [PATCH] A7800Hawk: Fix sound --- .../Consoles/Atari/A7800Hawk/TIA_Sound/TIA.cs | 4 +++- .../Atari/A7800Hawk/TIA_Sound/Tia.ISoundProvider.cs | 6 ++---- .../Consoles/Atari/A7800Hawk/TIA_Sound/Tia.SyncState.cs | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) 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 1b95a00306..01b4f6aa3c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/TIA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/TIA.cs @@ -14,6 +14,8 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk private bool _doTicks; + private int _spf; + public int _hsyncCnt; private int _capChargeStart; private bool _capCharging; @@ -31,7 +33,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk _capChargeStart = 0; _capCharging = false; AudioClocks = 0; - + _spf = (Core.maria._frameHz > 55) ? 740 : 880; _doTicks = false; } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.ISoundProvider.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.ISoundProvider.cs index 783c5acbf2..0cdba141aa 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.ISoundProvider.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.ISoundProvider.cs @@ -19,8 +19,8 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk public void GetSamplesSync(out short[] samples, out int nsamp) { - short[] ret = new short[AudioClocks * 2]; - nsamp = AudioClocks; + short[] ret = new short[_spf * 2]; + nsamp = _spf; GetSamples(ret); samples = ret; } @@ -35,8 +35,6 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk AudioClocks = 0; } - private readonly int _spf; - // Exposing this as GetSamplesAsync would allow this to provide async sound // However, it does nothing special for async sound so I don't see a point private void GetSamples(short[] samples) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.SyncState.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.SyncState.cs index 89a2c50cfd..58fa1b875a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.SyncState.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/TIA_Sound/Tia.SyncState.cs @@ -14,6 +14,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk ser.Sync("Bus_State", ref BusState); ser.Sync("Ticks", ref _doTicks); + ser.Sync("_spf", ref _spf); // some of these things weren't in the state because they weren't needed if // states were always taken at frame boundaries