From e5de0260c663faecfa705189fd862e76b7dc86bf Mon Sep 17 00:00:00 2001 From: arbee Date: Sat, 20 Dec 2014 12:09:18 -0500 Subject: [PATCH] (MESS) Intellivison: fix loading of very large .rom carts like D2K Arcade. [R. Belmont] --- src/emu/bus/intv/slot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++)