summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/quakeat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/quakeat.c')
-rw-r--r--src/mame/drivers/quakeat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/quakeat.c b/src/mame/drivers/quakeat.c
index a8f12c6ff2d..9a73e59aa70 100644
--- a/src/mame/drivers/quakeat.c
+++ b/src/mame/drivers/quakeat.c
@@ -66,7 +66,7 @@ static VIDEO_START(quake)
{
}
-static VIDEO_UPDATE(quake)
+static SCREEN_UPDATE(quake)
{
return 0;
}
@@ -165,11 +165,11 @@ static MACHINE_CONFIG_START( quake, driver_device )
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
MCFG_SCREEN_SIZE(64*8, 32*8)
MCFG_SCREEN_VISIBLE_AREA(0*8, 64*8-1, 0*8, 32*8-1)
+ MCFG_SCREEN_UPDATE(quake)
MCFG_PALETTE_LENGTH(0x100)
MCFG_VIDEO_START(quake)
- MCFG_VIDEO_UPDATE(quake)
MACHINE_CONFIG_END