diff options
author | 2022-01-26 08:47:06 -0500 | |
---|---|---|
committer | 2022-01-26 08:56:03 -0500 | |
commit | ca79d71af4bca7c1b8acc1df9e5dbb5b987d1542 (patch) | |
tree | 42994b1dd615273baa3e656b569ccd478270aff3 /src/devices/sound/ymfm_mame.h | |
parent | ba918b59faad5244d87078ab3b955f64fd803c4d (diff) |
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/devices/sound/ymfm_mame.h')
-rw-r--r-- | src/devices/sound/ymfm_mame.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/ymfm_mame.h b/src/devices/sound/ymfm_mame.h index d55be4f35f2..d22fc9ad8b2 100644 --- a/src/devices/sound/ymfm_mame.h +++ b/src/devices/sound/ymfm_mame.h @@ -152,9 +152,9 @@ protected: } // timer callbacks - void fm_mode_write(void *ptr, int param) { m_engine->engine_mode_write(param); } - void fm_check_interrupts(void *ptr, int param) { m_engine->engine_check_interrupts(); } - void fm_timer_handler(void *ptr, int param) { m_engine->engine_timer_expired(param); } + void fm_mode_write(int param) { m_engine->engine_mode_write(param); } + void fm_check_interrupts(int param) { m_engine->engine_check_interrupts(); } + void fm_timer_handler(int param) { m_engine->engine_timer_expired(param); } // internal state attotime m_busy_end; // busy end time |