c64 state: don't save DiskDrive twice

This commit is contained in:
feos 2018-09-08 23:24:09 +03:00
parent 86999815f7
commit 1cf29c8310
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial
public void SyncState(Serializer ser)
{
_device?.SyncState(ser);
//_device?.SyncState(ser); // feos: this is already saved by DiskDrive.SyncState(ser);
ser.Sync("Connected", ref _connected);
}