fix parameter order with DeltaUpdate calls

fixes 8737203f3a
This commit is contained in:
CasualPokePlayer 2023-04-04 23:54:05 -07:00
parent 389c6ebec5
commit fbe1f9b53e
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII
private void SaveDelta()
{
_machine.DiskIIController.Drive1.DeltaUpdate((original, current) =>
_machine.DiskIIController.Drive1.DeltaUpdate((current, original) =>
{
_diskDeltas[CurrentDisk] = DeltaSerializer.GetDelta<byte>(original, current).ToArray();
});
@ -62,7 +62,7 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII
private void LoadDelta(bool maybeDifferent)
{
_machine.DiskIIController.Drive1.DeltaUpdate((original, current) =>
_machine.DiskIIController.Drive1.DeltaUpdate((current, original) =>
{
if (_diskDeltas[CurrentDisk] is not null)
{