diff options
author | 2014-12-20 12:09:18 -0500 | |
---|---|---|
committer | 2014-12-20 12:09:18 -0500 | |
commit | e5de0260c663faecfa705189fd862e76b7dc86bf (patch) | |
tree | f8bdcc83a0c0092e509c6c845d46efb36b285fa5 /src/emu/bus/intv | |
parent | 86221585799dad223a7d43498a01dafc3c1c49cd (diff) |
(MESS) Intellivison: fix loading of very large .rom carts like D2K Arcade. [R. Belmont]
Diffstat (limited to 'src/emu/bus/intv')
-rw-r--r-- | src/emu/bus/intv/slot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/intv/slot.c b/src/emu/bus/intv/slot.c index 4b633fdb997..621c4014bb2 100644 --- a/src/emu/bus/intv/slot.c +++ b/src/emu/bus/intv/slot.c @@ -263,7 +263,7 @@ int intv_cart_slot_device::load_fullpath() if (temp != (num_segments ^ 0xff)) return IMAGE_INIT_FAIL; - m_cart->rom_alloc(0x10000, tag()); + m_cart->rom_alloc(0x20000, tag()); ROM = (UINT8 *)m_cart->get_rom_base(); for (int i = 0; i < num_segments; i++) |