summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/casloopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/casloopy.c')
-rw-r--r--src/mess/drivers/casloopy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/casloopy.c b/src/mess/drivers/casloopy.c
index 5490c6f131c..51e7eb991d7 100644
--- a/src/mess/drivers/casloopy.c
+++ b/src/mess/drivers/casloopy.c
@@ -478,13 +478,13 @@ DEVICE_IMAGE_LOAD_MEMBER( casloopy_state, loopy_cart )
UINT8 *SRC, *DST;
dynamic_buffer temp;
temp.resize(0x200000);
-
+
m_cart->rom_alloc(size, GENERIC_ROM32_WIDTH, ENDIANNESS_LITTLE);
SRC = temp;
DST = m_cart->get_rom_base();
- m_cart->common_load_rom(temp, size, "rom");
-
+ m_cart->common_load_rom(temp, size, "rom");
+
// fix endianness
for (int i = 0; i < 0x200000; i += 4)
{
@@ -495,7 +495,7 @@ DEVICE_IMAGE_LOAD_MEMBER( casloopy_state, loopy_cart )
DST[i + 2] = tempa;
DST[i + 3] = tempb;
}
-
+
return IMAGE_INIT_PASS;
}