diff options
Diffstat (limited to 'src/mame/drivers/groundfx.c')
-rw-r--r-- | src/mame/drivers/groundfx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/groundfx.c b/src/mame/drivers/groundfx.c index 1ac0a65f582..6df5b61e95e 100644 --- a/src/mame/drivers/groundfx.c +++ b/src/mame/drivers/groundfx.c @@ -382,12 +382,12 @@ static MACHINE_CONFIG_START( groundfx, groundfx_state ) MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16) MCFG_SCREEN_SIZE(40*8, 32*8) MCFG_SCREEN_VISIBLE_AREA(0, 40*8-1, 3*8, 32*8-1) + MCFG_SCREEN_UPDATE(groundfx) MCFG_GFXDECODE(groundfx) MCFG_PALETTE_LENGTH(16384) MCFG_VIDEO_START(groundfx) - MCFG_VIDEO_UPDATE(groundfx) MCFG_TC0100SCN_ADD("tc0100scn", groundfx_tc0100scn_intf) MCFG_TC0480SCP_ADD("tc0480scp", groundfx_tc0480scp_intf) |