We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 389c6eb commit fbe1f9bCopy full SHA for fbe1f9b
src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.ISaveRam.cs
@@ -54,15 +54,15 @@ public void StoreSaveRam(byte[] data)
54
55
private void SaveDelta()
56
{
57
- _machine.DiskIIController.Drive1.DeltaUpdate((original, current) =>
+ _machine.DiskIIController.Drive1.DeltaUpdate((current, original) =>
58
59
_diskDeltas[CurrentDisk] = DeltaSerializer.GetDelta<byte>(original, current).ToArray();
60
});
61
}
62
63
private void LoadDelta(bool maybeDifferent)
64
65
66
67
if (_diskDeltas[CurrentDisk] is not null)
68
0 commit comments