diff options
Diffstat (limited to 'src/mame/drivers/subsino.cpp')
-rw-r--r-- | src/mame/drivers/subsino.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/subsino.cpp b/src/mame/drivers/subsino.cpp index 3008bb0e288..6b83bcb135a 100644 --- a/src/mame/drivers/subsino.cpp +++ b/src/mame/drivers/subsino.cpp @@ -3759,11 +3759,11 @@ ROM_START( mtrainnv ) ROM_REGION( 0x10000, "tilemap", 0 ) ROM_LOAD( "mtrain_tilemap.bin", 0x00000, 0x10000, NO_DUMP ) - ROM_COPY( "maincpu", 0x0000, 0x00000, 0x10000 ) // just to show something + ROM_COPY( "maincpu", nullptr, 0x00000, 0x10000 ) // just to show something ROM_REGION( 0x10000, "reels", 0 ) ROM_LOAD( "mtrain_reels.bin", 0x00000, 0x10000, NO_DUMP ) - ROM_COPY( "maincpu", 0x0000, 0x00000, 0x10000 ) // just to show something + ROM_COPY( "maincpu", nullptr, 0x00000, 0x10000 ) // just to show something ROM_END |