diff options
Diffstat (limited to 'src/emu/machine/cdp1852.c')
-rw-r--r-- | src/emu/machine/cdp1852.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/cdp1852.c b/src/emu/machine/cdp1852.c index fe98f13d53b..a5e4ea0783a 100644 --- a/src/emu/machine/cdp1852.c +++ b/src/emu/machine/cdp1852.c @@ -165,7 +165,7 @@ static DEVICE_START( cdp1852 ) if (device->clock() > 0) { /* create the scan timer */ - cdp1852->scan_timer = device->machine->scheduler().timer_alloc(FUNC(cdp1852_scan_tick), (void *)device); + cdp1852->scan_timer = device->machine().scheduler().timer_alloc(FUNC(cdp1852_scan_tick), (void *)device); cdp1852->scan_timer->adjust(attotime::zero, 0, attotime::from_hz(device->clock())); } |