From 1c61e96910d5ccf215c64aad8ea70e35da719bae Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Sat, 28 Mar 2009 21:55:23 +0000 Subject: [PATCH] Fix G-NET on big-endian hosts --- src/mame/drivers/taitogn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/taitogn.c b/src/mame/drivers/taitogn.c index 6d2ba46e917..abb38a799e4 100644 --- a/src/mame/drivers/taitogn.c +++ b/src/mame/drivers/taitogn.c @@ -1038,7 +1038,7 @@ INPUT_PORTS_END ROM_REGION32_LE( 0x080000, "mainbios", 0 ) \ ROM_LOAD( "coh-3002t.353", 0x000000, 0x080000, CRC(03967fa7) SHA1(0e17fec2286e4e25deb23d40e41ce0986f373d49) ) \ \ - ROM_REGION32_LE( 0x200000, "subbios", 0 ) \ + ROM_REGION16_LE( 0x200000, "subbios", 0 ) \ ROM_LOAD( "flash.u30", 0x000000, 0x200000, CRC(c48c8236) SHA1(c6dad60266ce2ff635696bc0d91903c543273559) ) \ ROM_REGION32_LE( 0x80000, "soundcpu", 0) \ ROM_FILL( 0, 0x80000, 0xff) \