ZXHawk: state should be populated in the disk AFTER the disk is loaded (maybe)

This commit is contained in:
Asnivor 2018-05-03 19:53:42 +01:00
parent 99b7adaf19
commit 5df212817c
1 changed files with 6 additions and 6 deletions

View File

@ -368,20 +368,20 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
((AYChip)AYDevice as AYChip).PanningConfiguration = Spectrum.Settings.AYPanConfig;
}
if (UPDDiskDevice != null)
{
UPDDiskDevice.SyncState(ser);
}
ser.Sync("tapeMediaIndex", ref tapeMediaIndex);
if (ser.IsReader)
TapeMediaIndex = tapeMediaIndex;
TapeDevice.SyncState(ser);
ser.Sync("diskMediaIndex", ref diskMediaIndex);
if (ser.IsReader)
DiskMediaIndex = diskMediaIndex;
TapeDevice.SyncState(ser);
if (UPDDiskDevice != null)
{
UPDDiskDevice.SyncState(ser);
}
ser.EndSection();
}