summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/epyx_fast_load.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/epyx_fast_load.cpp')
-rw-r--r--src/devices/bus/c64/epyx_fast_load.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/c64/epyx_fast_load.cpp b/src/devices/bus/c64/epyx_fast_load.cpp
index 4dced91c76a..21352ddef63 100644
--- a/src/devices/bus/c64/epyx_fast_load.cpp
+++ b/src/devices/bus/c64/epyx_fast_load.cpp
@@ -51,7 +51,7 @@ c64_epyx_fast_load_cartridge_device::c64_epyx_fast_load_cartridge_device(const m
void c64_epyx_fast_load_cartridge_device::device_start()
{
// allocate timer
- m_exrom_timer = timer_alloc();
+ m_exrom_timer = timer_alloc(FUNC(c64_epyx_fast_load_cartridge_device::update_exrom), this);
}
@@ -67,10 +67,10 @@ void c64_epyx_fast_load_cartridge_device::device_reset()
//-------------------------------------------------
-// device_timer - handler timer events
+// update_exrom - update exrom flag
//-------------------------------------------------
-void c64_epyx_fast_load_cartridge_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+TIMER_CALLBACK_MEMBER(c64_epyx_fast_load_cartridge_device::update_exrom)
{
m_exrom = 1;
}