Support GBA .sav file with appended .rtc (#1927)
* Support GBA .sav file with appended .rtc * Change comment
This commit is contained in:
parent
de4ae9dd92
commit
f580d20a7b
|
@ -193,6 +193,7 @@ void CartGame::SetupSave(u32 type)
|
||||||
SRAMType = S_FLASH512K;
|
SRAMType = S_FLASH512K;
|
||||||
break;
|
break;
|
||||||
case 128*1024:
|
case 128*1024:
|
||||||
|
case (128*1024 + 0x10): // .sav file with appended real time clock data (ex: emulator mGBA)
|
||||||
SRAMType = S_FLASH1M;
|
SRAMType = S_FLASH1M;
|
||||||
break;
|
break;
|
||||||
case 0:
|
case 0:
|
||||||
|
|
Loading…
Reference in New Issue