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:
parent
20cdb02de8
commit
99b7adaf19
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue