diff options
| author | 2021-03-24 22:45:32 -0700 | |
|---|---|---|
| committer | 2021-03-24 22:45:32 -0700 | |
| commit | 71e97e887f03788e9dfb07ace3ea5288f6aec3c4 (patch) | |
| tree | 279aa35e549d5b8808e6faa970bab1e2e589f357 /src/devices/machine/pcf8583.cpp | |
| parent | 1aa87e67e9cb54e9638e21500ba66d8039ed0596 (diff) | |
Add scheduler object and accessor to device_t. Upgrade all 3 timer parameters to u64. Change first parameter of device timers to be emu_timer const. Updated all device timers to follow suit.
Diffstat (limited to 'src/devices/machine/pcf8583.cpp')
| -rw-r--r-- | src/devices/machine/pcf8583.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/pcf8583.cpp b/src/devices/machine/pcf8583.cpp index 0cc31023844..718de3eb9d3 100644 --- a/src/devices/machine/pcf8583.cpp +++ b/src/devices/machine/pcf8583.cpp @@ -73,7 +73,7 @@ void pcf8583_device::device_start() m_irq_cb.resolve_safe(); } -void pcf8583_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) +void pcf8583_device::device_timer(emu_timer const &timer, device_timer_id id, int param, void *ptr) { switch (id) { |
