summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/goal92.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-03-10 01:03:06 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-03-10 21:35:02 -0500
commitb888b8c4edaeccea889b97e1c2df6f914ae6e303 (patch)
tree15c1ea3af8a5337262c959c56acb31712777ec15 /src/mame/drivers/goal92.cpp
parent006709e725a7afbaacb947e5645996d8101036c7 (diff)
Convert screen_device VBLANK callback to devcb_write_line
- WRITE_LINE callback has same functionality, except that screen is not an argument - Rename screen_eof_xxx to screen_vblank_xxx in many drivers - No changes to externally registered vblank delegates or screen update methods
Diffstat (limited to 'src/mame/drivers/goal92.cpp')
-rw-r--r--src/mame/drivers/goal92.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/goal92.cpp b/src/mame/drivers/goal92.cpp
index 0b9783f4cf3..b88d0aaa28f 100644
--- a/src/mame/drivers/goal92.cpp
+++ b/src/mame/drivers/goal92.cpp
@@ -313,7 +313,7 @@ static MACHINE_CONFIG_START( goal92, goal92_state )
MCFG_SCREEN_SIZE(40*8, 32*8)
MCFG_SCREEN_VISIBLE_AREA(0*8, 40*8-1, 1*8, 31*8-1) // black border at bottom is a game bug...
MCFG_SCREEN_UPDATE_DRIVER(goal92_state, screen_update_goal92)
- MCFG_SCREEN_VBLANK_DRIVER(goal92_state, screen_eof_goal92)
+ MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(goal92_state, screen_vblank_goal92))
MCFG_SCREEN_PALETTE("palette")
MCFG_GFXDECODE_ADD("gfxdecode", "palette", goal92)