Merge branch 'master' of https://github.com/TASVideos/BizHawk
This commit is contained in:
commit
39e78db39c
|
@ -503,7 +503,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
private static List<uint[]> PanTabs = new List<uint[]>
|
private static List<uint[]> PanTabs = new List<uint[]>
|
||||||
{
|
{
|
||||||
// MONO
|
// MONO
|
||||||
new uint[] { 100,100, 100,100, 100,100 },
|
new uint[] { 66,66, 66,66, 66,66 },
|
||||||
// ABC
|
// ABC
|
||||||
new uint[] { 100,10, 66,66, 10,100 },
|
new uint[] { 100,10, 66,66, 10,100 },
|
||||||
// ACB
|
// ACB
|
||||||
|
|
|
@ -307,7 +307,11 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
ULADevice.SyncState(ser);
|
ULADevice.SyncState(ser);
|
||||||
|
|
||||||
if (AYDevice != null)
|
if (AYDevice != null)
|
||||||
|
{
|
||||||
AYDevice.SyncState(ser);
|
AYDevice.SyncState(ser);
|
||||||
|
((AYChip)AYDevice as AYChip).PanningConfiguration = Spectrum.Settings.AYPanConfig;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
ser.Sync("tapeMediaIndex", ref tapeMediaIndex);
|
ser.Sync("tapeMediaIndex", ref tapeMediaIndex);
|
||||||
TapeMediaIndex = tapeMediaIndex;
|
TapeMediaIndex = tapeMediaIndex;
|
||||||
|
|
Loading…
Reference in New Issue