GB MBC: Fix initializing MBC3

This commit is contained in:
Jeffrey Pfau 2016-09-17 12:21:05 -07:00
parent 31f45e3e1d
commit ebecb18395
1 changed files with 2 additions and 1 deletions

View File

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