mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
[libretro] fixed incorrect system RAM report when emulated system hardware is set to "SYSTEM_SMS"
This commit is contained in:
parent
f5e425b92a
commit
65f34f36da
Binary file not shown.
@ -2137,12 +2137,7 @@ void *retro_get_memory_data(unsigned id)
|
||||
case RETRO_MEMORY_SAVE_RAM:
|
||||
return sram.sram;
|
||||
case RETRO_MEMORY_SYSTEM_RAM:
|
||||
|
||||
if (system_hw == SYSTEM_SMS)
|
||||
return zram; // 0x2000 = 8kb z80 ram
|
||||
else
|
||||
return work_ram; //0x10000 = 64kb 68000 ram
|
||||
|
||||
return work_ram;
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user