summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/macpci.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/macpci.c')
-rw-r--r--src/mess/drivers/macpci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/macpci.c b/src/mess/drivers/macpci.c
index 551e8fb02ab..b28794bb0d6 100644
--- a/src/mess/drivers/macpci.c
+++ b/src/mess/drivers/macpci.c
@@ -87,7 +87,7 @@ static VIDEO_START( pippin )
{
}
-static SCREEN_UPDATE_IND16( pippin )
+UINT32 macpci_state::screen_update_pippin(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
return 0;
}
@@ -116,7 +116,7 @@ static MACHINE_CONFIG_START( pippin, macpci_state )
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500)) /* not accurate */
MCFG_SCREEN_SIZE(640, 480)
MCFG_SCREEN_VISIBLE_AREA(0, 640-1, 0, 480-1)
- MCFG_SCREEN_UPDATE_STATIC(pippin)
+ MCFG_SCREEN_UPDATE_DRIVER(macpci_state, screen_update_pippin)
MCFG_PALETTE_LENGTH(2)
MCFG_PALETTE_INIT(black_and_white)