(MESS) Intellivison: fix loading of very large .rom carts like D2K Arcade. [R. Belmont]

This commit is contained in:
arbee 2014-12-20 12:09:18 -05:00
parent 8622158579
commit e5de0260c6

View File

@ -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++)