summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/mdisk.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-01-26 08:47:06 -0500
committer AJR <ajrhacker@users.noreply.github.com>2022-01-26 08:56:03 -0500
commitca79d71af4bca7c1b8acc1df9e5dbb5b987d1542 (patch)
tree42994b1dd615273baa3e656b569ccd478270aff3 /src/mame/drivers/mdisk.cpp
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/drivers/mdisk.cpp')
-rw-r--r--src/mame/drivers/mdisk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mdisk.cpp b/src/mame/drivers/mdisk.cpp
index cfda2eb1090..067457d713e 100644
--- a/src/mame/drivers/mdisk.cpp
+++ b/src/mame/drivers/mdisk.cpp
@@ -130,7 +130,7 @@ void mdisk_state::fdc_side_w(uint8_t data)
void mdisk_state::machine_start()
{
// timer to switch rom to ram
- m_rom_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(mdisk_state::rom_timer_callback), this), nullptr);
+ m_rom_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(mdisk_state::rom_timer_callback), this));
// register for save states
save_item(NAME(m_uart1_rxrdy));