Fix inconsistent MAX_FLOPPIES usage

This commit is contained in:
CasualPokePlayer 2024-10-08 14:15:53 -07:00
parent 54fd290107
commit 5889ab1d96
1 changed files with 2 additions and 1 deletions

View File

@ -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<string>();
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}");