diff options
Diffstat (limited to 'src/devices/cpu/alto2/a2dvt.cpp')
-rw-r--r-- | src/devices/cpu/alto2/a2dvt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/alto2/a2dvt.cpp b/src/devices/cpu/alto2/a2dvt.cpp index 8704ad0d53d..ad019b6b07b 100644 --- a/src/devices/cpu/alto2/a2dvt.cpp +++ b/src/devices/cpu/alto2/a2dvt.cpp @@ -30,8 +30,8 @@ void alto2_cpu_device::activate_dvt() */ void alto2_cpu_device::init_dvt(int task) { - set_f1(task, f1_block, &alto2_cpu_device::f1_early_dvt_block, 0); - set_f2(task, f2_dvt_evenfield, 0, &alto2_cpu_device::f2_late_evenfield); + set_f1(task, f1_block, &alto2_cpu_device::f1_early_dvt_block, nullptr); + set_f2(task, f2_dvt_evenfield, nullptr, &alto2_cpu_device::f2_late_evenfield); m_active_callback[task] = &alto2_cpu_device::activate_dvt; } |