ZXHawk: Tape and Disk devices are now only re-initialized when a save state is loaded, NOT saved (TLDR: schoolboy error fixed)

This commit is contained in:
Asnivor 2018-05-03 19:41:33 +01:00
parent 20cdb02de8
commit 99b7adaf19
1 changed files with 4 additions and 2 deletions

View File

@ -374,10 +374,12 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
}
ser.Sync("tapeMediaIndex", ref tapeMediaIndex);
TapeMediaIndex = tapeMediaIndex;
if (ser.IsReader)
TapeMediaIndex = tapeMediaIndex;
ser.Sync("diskMediaIndex", ref diskMediaIndex);
DiskMediaIndex = diskMediaIndex;
if (ser.IsReader)
DiskMediaIndex = diskMediaIndex;
TapeDevice.SyncState(ser);