summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Alex W. Jackson <alex.w.jackson@gmail.com>2011-11-06 21:13:47 +0000
committer Alex W. Jackson <alex.w.jackson@gmail.com>2011-11-06 21:13:47 +0000
commitf7c89c9249cabb883c96569bf5e7d6a1032eeb64 (patch)
tree737941d5091bd63360099fb724c1519a92694ad5 /src
parentb537f5804d56fc0ec70c90b7278d1d2e37e233b5 (diff)
(no whatsnew)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/neogeo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/neogeo.c b/src/mame/drivers/neogeo.c
index c06ab1fb019..93994d70e8b 100644
--- a/src/mame/drivers/neogeo.c
+++ b/src/mame/drivers/neogeo.c
@@ -1286,7 +1286,7 @@ static DEVICE_IMAGE_LOAD( neo_cartridge )
// create memory regions
size = image.get_software_region_length("maincpu");
image.device().machine().region_free("maincpu");
- image.device().machine().region_alloc("maincpu",size,1, ENDIANNESS_LITTLE);
+ image.device().machine().region_alloc("maincpu",size, 2, ENDIANNESS_BIG);
memcpy(image.device().machine().region("maincpu")->base(),image.get_software_region("maincpu"),size);
// for whatever reason (intentional, or design flaw) software loaded via software lists is swapped in endianess vs. the standard ROM loading, regardless of the above. Swap it to keep consistency