summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/apf/slot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/bus/apf/slot.c')
-rw-r--r--src/emu/bus/apf/slot.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/bus/apf/slot.c b/src/emu/bus/apf/slot.c
index 504bd699389..6a92271fc7c 100644
--- a/src/emu/bus/apf/slot.c
+++ b/src/emu/bus/apf/slot.c
@@ -169,9 +169,9 @@ bool apf_cart_slot_device::call_load()
seterror(IMAGE_ERROR_UNSPECIFIED, "Image extends beyond the expected size for an APF cart");
return IMAGE_INIT_FAIL;
}
-
+
m_cart->rom_alloc(size, tag());
-
+
if (software_entry() == NULL)
fread(m_cart->get_rom_base(), size);
else
@@ -294,5 +294,3 @@ WRITE8_MEMBER(apf_cart_slot_device::write_ram)
if (m_cart)
m_cart->write_ram(space, offset, data);
}
-
-