mirror of https://github.com/bsnes-emu/bsnes.git
Fixed: Writing to 3XXX in MBC5 before writing to 2XXX no longer switches to the wrong bank.
This commit is contained in:
parent
421d3b27f5
commit
6b1363e96e
|
@ -137,4 +137,9 @@ void GB_configure_cart(GB_gameboy_t *gb)
|
||||||
gb->mbc1_wiring = GB_MBC1M_WIRING;
|
gb->mbc1_wiring = GB_MBC1M_WIRING;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Set MBC5's bank to 1 correctly */
|
||||||
|
if (gb->cartridge_type->mbc_type == GB_MBC5) {
|
||||||
|
gb->mbc5.rom_bank_low = 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue