summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/ac1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/ac1.c')
-rw-r--r--src/mess/video/ac1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/video/ac1.c b/src/mess/video/ac1.c
index 728cc44cfd2..e7fd46ddd62 100644
--- a/src/mess/video/ac1.c
+++ b/src/mess/video/ac1.c
@@ -26,7 +26,7 @@ void ac1_state::video_start()
{
}
-SCREEN_UPDATE_IND16( ac1 )
+UINT32 ac1_state::screen_update_ac1(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
int x,y;
address_space &space = *screen.machine().device("maincpu")->memory().space(AS_PROGRAM);
@@ -42,7 +42,7 @@ SCREEN_UPDATE_IND16( ac1 )
return 0;
}
-SCREEN_UPDATE_IND16( ac1_32 )
+UINT32 ac1_state::screen_update_ac1_32(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
int x,y;
address_space &space = *screen.machine().device("maincpu")->memory().space(AS_PROGRAM);