diff options
Diffstat (limited to 'src/mame/machine/itech8.cpp')
-rw-r--r-- | src/mame/machine/itech8.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/itech8.cpp b/src/mame/machine/itech8.cpp index 4a3e2e5dcef..22b9685dfde 100644 --- a/src/mame/machine/itech8.cpp +++ b/src/mame/machine/itech8.cpp @@ -482,7 +482,7 @@ uint8_t itech8_state::slikshot_z80_control_r() * *************************************/ -TIMER_CALLBACK_MEMBER( itech8_state::delayed_z80_control_w ) +TIMER_CALLBACK_MEMBER(itech8_state::delayed_z80_control_w) { int data = param; @@ -509,7 +509,7 @@ TIMER_CALLBACK_MEMBER( itech8_state::delayed_z80_control_w ) void itech8_state::slikshot_z80_control_w(uint8_t data) { - synchronize(TIMER_DELAYED_Z80_CONTROL, data); + machine().scheduler().synchronize(timer_expired_delegate(FUNC(itech8_state::delayed_z80_control_w), this), data); } |