This commit is contained in:
alyosha-tas 2018-03-20 10:08:24 -04:00
commit 39e78db39c
2 changed files with 5 additions and 1 deletions

View File

@ -503,7 +503,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
private static List<uint[]> PanTabs = new List<uint[]>
{
// MONO
new uint[] { 100,100, 100,100, 100,100 },
new uint[] { 66,66, 66,66, 66,66 },
// ABC
new uint[] { 100,10, 66,66, 10,100 },
// ACB

View File

@ -307,7 +307,11 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
ULADevice.SyncState(ser);
if (AYDevice != null)
{
AYDevice.SyncState(ser);
((AYChip)AYDevice as AYChip).PanningConfiguration = Spectrum.Settings.AYPanConfig;
}
ser.Sync("tapeMediaIndex", ref tapeMediaIndex);
TapeMediaIndex = tapeMediaIndex;