mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
Add hack for unlicensed games that don't handle the Z80 bus properly
This commit is contained in:
parent
bccd8832dd
commit
a67db32a4a
5 changed files with 39 additions and 6 deletions
|
@ -1210,6 +1210,8 @@ static void parse_carthw(const char *carthw_cfg, int *fill_sram,
|
|||
PicoIn.quirks |= PQUIRK_MARSCHECK_HACK;
|
||||
else if (strcmp(p, "force_6btn") == 0)
|
||||
PicoIn.quirks |= PQUIRK_FORCE_6BTN;
|
||||
else if (strcmp(p, "no_z80_bus_lock") == 0)
|
||||
PicoIn.quirks |= PQUIRK_NO_Z80_BUS_LOCK;
|
||||
else {
|
||||
elprintf(EL_STATUS, "carthw:%d: unsupported prop: %s", line, p);
|
||||
goto bad_nomsg;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue