From 5889ab1d96d9e29dd593fe777327cbb70d030727 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Tue, 8 Oct 2024 14:15:53 -0700 Subject: [PATCH] Fix inconsistent MAX_FLOPPIES usage --- src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs index a0b3bdeb0a..1669d49610 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Amiga/PUAE.cs @@ -49,6 +49,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga _roms = lp.Roms; //_discs = lp.Discs; _syncSettings = lp.SyncSettings ?? new(); + _syncSettings.FloppyDrives = Math.Min(LibPUAE.MAX_FLOPPIES, _syncSettings.FloppyDrives); var filesToRemove = new List(); CreateArguments(_syncSettings); ControllerDefinition = _controllerDefinition; @@ -103,7 +104,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga else { _exe.AddReadonlyFile(lp.Roms[index].FileData, FileNames.FD + index); - if (index < Math.Min(LibPUAE.MAX_FLOPPIES, _syncSettings.FloppyDrives)) + if (index < _syncSettings.FloppyDrives) { AppendSetting($"floppy{index}={FileNames.FD}{index}"); AppendSetting($"floppy{index}type={(int)DriveType.DRV_35_DD}");