summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/nt7534.h
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/devices/video/nt7534.h
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/devices/video/nt7534.h')
-rw-r--r--src/devices/video/nt7534.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/nt7534.h b/src/devices/video/nt7534.h
index ef36ba36884..7b4db9d51c9 100644
--- a/src/devices/video/nt7534.h
+++ b/src/devices/video/nt7534.h
@@ -48,7 +48,7 @@ protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
- virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
+ virtual void device_timer(emu_timer &timer, device_timer_id id, int param) override;
private:
// internal helper
void set_busy_flag(uint16_t usec);