summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-07-23 20:11:00 +0000
committer smf- <smf-@users.noreply.github.com>2013-07-23 20:11:00 +0000
commitdf5d33d4bddaca321b5a07adebb0e8c09fccea7e (patch)
treee37fc9506b24fdfa9419e379aa8b533cc653990e /src
parentae8da1b92e1d624d0026d9d7873824057d7c6942 (diff)
don't use ROM_COPY with overlapping memory. ROM_CONTINUE would probably be more appropriate, but this produces identical results as the old code. (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/5clown.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/5clown.c b/src/mame/drivers/5clown.c
index 9cc891413ba..6fc2a184b8f 100644
--- a/src/mame/drivers/5clown.c
+++ b/src/mame/drivers/5clown.c
@@ -1116,7 +1116,7 @@ MACHINE_CONFIG_END
ROM_START( 5clown )
ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "4.u2", 0x2000, 0x8000, CRC(96e3e8ab) SHA1(fec20b9a8bde5306162f8288cdc9580f445cadf5) )
- ROM_COPY( "maincpu", 0x2000, 0x8000, 0x8000 )
+ ROM_COPY( "maincpu", 0x8000, 0xe000, 0x2000 )
ROM_REGION( 0x8000, "gfxbanks", 0 )
@@ -1179,7 +1179,7 @@ ROM_END
ROM_START( 5clownsp )
ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "five_clown_sp.u2", 0x2000, 0x8000, CRC(fa18090d) SHA1(47feb5dbc77ae8621fc35b707c24d64a95227a39) )
- ROM_COPY( "maincpu", 0x2000, 0x8000, 0x8000 )
+ ROM_COPY( "maincpu", 0x8000, 0xe000, 0x2000 )
ROM_REGION( 0x8000, "gfxbanks", 0 )