summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/eprom.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/eprom.c')
-rw-r--r--src/mame/drivers/eprom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/eprom.c b/src/mame/drivers/eprom.c
index c88baa6ec81..d9c146c8c24 100644
--- a/src/mame/drivers/eprom.c
+++ b/src/mame/drivers/eprom.c
@@ -426,7 +426,7 @@ static MACHINE_CONFIG_START( eprom, eprom_state )
/* note: these parameters are from published specs, not derived */
/* the board uses a SYNGEN chip to generate video signals */
MCFG_SCREEN_RAW_PARAMS(ATARI_CLOCK_14MHz/2, 456, 0, 336, 262, 0, 240)
- MCFG_SCREEN_UPDATE_STATIC(eprom)
+ MCFG_SCREEN_UPDATE_DRIVER(eprom_state, screen_update_eprom)
MCFG_VIDEO_START_OVERRIDE(eprom_state,eprom)
@@ -457,7 +457,7 @@ static MACHINE_CONFIG_START( klaxp, eprom_state )
/* note: these parameters are from published specs, not derived */
/* the board uses a SYNGEN chip to generate video signals */
MCFG_SCREEN_RAW_PARAMS(ATARI_CLOCK_14MHz/2, 456, 0, 336, 262, 0, 240)
- MCFG_SCREEN_UPDATE_STATIC(eprom)
+ MCFG_SCREEN_UPDATE_DRIVER(eprom_state, screen_update_eprom)
MCFG_VIDEO_START_OVERRIDE(eprom_state,eprom)
@@ -488,7 +488,7 @@ static MACHINE_CONFIG_START( guts, eprom_state )
/* note: these parameters are from published specs, not derived */
/* the board uses a SYNGEN chip to generate video signals */
MCFG_SCREEN_RAW_PARAMS(ATARI_CLOCK_14MHz/2, 456, 0, 336, 262, 0, 240)
- MCFG_SCREEN_UPDATE_STATIC(guts)
+ MCFG_SCREEN_UPDATE_DRIVER(eprom_state, screen_update_guts)
MCFG_VIDEO_START_OVERRIDE(eprom_state,guts)