mirror of https://github.com/mgba-emu/mgba.git
GB MBC: Fix initializing MBC3
This commit is contained in:
parent
31f45e3e1d
commit
ebecb18395
|
@ -129,7 +129,8 @@ void GBMBCInit(struct GB* gb) {
|
|||
break;
|
||||
case GB_MBC3:
|
||||
gb->memory.mbc = _GBMBC3;
|
||||
default:
|
||||
break;
|
||||
default:
|
||||
mLOG(GB_MBC, WARN, "Unknown MBC type: %02X", cart->type);
|
||||
// Fall through
|
||||
case GB_MBC5:
|
||||
|
|
Loading…
Reference in New Issue