summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
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/includes/gaplus.h
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/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index 46e510ad8e9..c7ae5acf6cb 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -97,7 +97,7 @@ public:
TIMER_CALLBACK_MEMBER(namcoio_run);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void screen_eof(screen_device &screen, bool state);
+ DECLARE_WRITE_LINE_MEMBER(screen_vblank);
void starfield_init();
void starfield_render(bitmap_ind16 &bitmap);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );