summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mac128.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mac128.cpp')
-rw-r--r--src/mame/drivers/mac128.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/mac128.cpp b/src/mame/drivers/mac128.cpp
index c998cbba7e2..a8053e6be21 100644
--- a/src/mame/drivers/mac128.cpp
+++ b/src/mame/drivers/mac128.cpp
@@ -238,7 +238,7 @@ public:
void init_mac128k512k();
void init_mac512ke();
void init_macplus();
- DECLARE_VIDEO_START(mac);
+ void video_start_mac() ATTR_COLD;
DECLARE_PALETTE_INIT(mac);
uint32_t screen_update_mac(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
#ifndef MAC_USE_EMULATED_KBD
@@ -1227,7 +1227,7 @@ PALETTE_INIT_MEMBER(mac128_state,mac)
palette.set_pen_color(1, 0x00, 0x00, 0x00);
}
-VIDEO_START_MEMBER(mac128_state,mac)
+void mac128_state::video_start_mac()
{
}
@@ -1339,7 +1339,7 @@ MACHINE_CONFIG_START(mac128_state::mac512ke)
MCFG_PALETTE_ADD("palette", 2)
MCFG_PALETTE_INIT_OWNER(mac128_state,mac)
- MCFG_VIDEO_START_OVERRIDE(mac128_state,mac)
+ set_video_start_cb(config, driver_callback_delegate(&video_start_mac, this));
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", mac128_state, mac_scanline, "screen", 0, 1)