From 4ea80410b8f3d92ba09858c6138070be8add67b9 Mon Sep 17 00:00:00 2001 From: vadosnaprimer Date: Sat, 8 Apr 2023 10:42:46 +0300 Subject: [PATCH] mame: fix bios selection menu api changed in https://github.com/mamedev/mame/commit/952b4ecc6753e07d4009bf31da27e77e71f3f6c4 --- src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs index 692a4e598c..a6d05c56b0 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/LibMAME.cs @@ -17,8 +17,8 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME } // constants - public const int ROMENTRYTYPE_SYSTEM_BIOS = 9; - public const int ROMENTRYTYPE_DEFAULT_BIOS = 10; + public const int ROMENTRYTYPE_SYSTEM_BIOS = 8; + public const int ROMENTRYTYPE_DEFAULT_BIOS = 9; public const int ROMENTRY_TYPEMASK = 15; public const int BIOS_INDEX = 24; public const int BIOS_FIRST = 1;