diff options
Diffstat (limited to 'src/mame/drivers/pasopia.cpp')
-rw-r--r-- | src/mame/drivers/pasopia.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/pasopia.cpp b/src/mame/drivers/pasopia.cpp index e03b8788b32..a65f5664e90 100644 --- a/src/mame/drivers/pasopia.cpp +++ b/src/mame/drivers/pasopia.cpp @@ -218,7 +218,7 @@ void pasopia_state::machine_start() { m_p_vram = make_unique_clear<u16[]>(0x4000); - m_pio_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(pasopia_state::pio_timer), this)); + m_pio_timer = timer_alloc(FUNC(pasopia_state::pio_timer), this); m_pio_timer->adjust(attotime::from_hz(50), 0, attotime::from_hz(50)); m_hblank = 0; |