From 4d5c7defd185ce665634f87738cc9914e0c51ccc Mon Sep 17 00:00:00 2001 From: squall-leonhart Date: Thu, 26 Jun 2008 13:49:19 +0000 Subject: [PATCH] more fixes towards MBC7 git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@580 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/dmg/GB.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dmg/GB.cpp b/src/dmg/GB.cpp index 24dc59bb..6f035fa8 100644 --- a/src/dmg/GB.cpp +++ b/src/dmg/GB.cpp @@ -3313,12 +3313,14 @@ bool gbReadBatteryFile(const char *file) case 0x13: case 0xfc: res = gbReadSaveMBC3(file); + break; case 0x1b: case 0x1e: res = gbReadSaveMBC5(file); break; case 0x22: res = gbReadSaveMBC7(file); + break; case 0xfd: if(!gbReadSaveTAMA5(file)) { u8 gbDaysinMonth [12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};