Update libretro.cpp

This commit is contained in:
retro-wertz 2019-01-29 22:36:05 +08:00 committed by Rafael Kitover
parent 4700a2c1bf
commit 0697922179
1 changed files with 2 additions and 2 deletions

View File

@ -746,7 +746,7 @@ static void load_image_preferences(void)
buffer[4] = 0;
cpuSaveType = GBA_SAVE_AUTO;
flashSize = 0x10000;
flashSize = 65536;
eepromSize = 512;
rtcEnabled = false;
mirroringEnable = false;
@ -790,7 +790,7 @@ static void load_image_preferences(void)
saveType = cpuSaveType;
if (flashSize == 0x10000 || flashSize == 0x20000)
if (flashSize == 65536 || flashSize == 131072)
flashSetSize(flashSize);
rtcEnable(rtcEnabled);