mame: fix bios selection menu

api changed in 952b4ecc67
This commit is contained in:
vadosnaprimer 2023-04-08 10:42:46 +03:00
parent f73a3bdea6
commit 4ea80410b8
1 changed files with 2 additions and 2 deletions

View File

@ -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;