diff options
author | 2014-07-01 12:32:45 +0000 | |
---|---|---|
committer | 2014-07-01 12:32:45 +0000 | |
commit | afa120634949807a736af9dff4ae06e1b9e8614d (patch) | |
tree | 1154ffa5fd5a2180c13561023858c083d8944128 /src/emu/bus/neogeo | |
parent | 64df51f7a7814031890d9dce10c14948b56f35cf (diff) |
clear the extra ram some of the bootlegs have, might actually fix kof10th this time (nw)
Diffstat (limited to 'src/emu/bus/neogeo')
-rw-r--r-- | src/emu/bus/neogeo/bootleg_prot.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/bus/neogeo/bootleg_prot.c b/src/emu/bus/neogeo/bootleg_prot.c index 5231708b4cd..2650e74d153 100644 --- a/src/emu/bus/neogeo/bootleg_prot.c +++ b/src/emu/bus/neogeo/bootleg_prot.c @@ -15,6 +15,8 @@ ngbootleg_prot_device::ngbootleg_prot_device(const machine_config &mconfig, cons void ngbootleg_prot_device::device_start() { + memset(m_cartridge_ram, 0x00, 0x2000); + save_item(NAME(m_cartridge_ram)); } |