diff options
author | 2010-12-31 21:42:55 +0000 | |
---|---|---|
committer | 2010-12-31 21:42:55 +0000 | |
commit | 3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch) | |
tree | 415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/machine/pit8253.h | |
parent | 2ca38fad3e665d2e4e0212263a07819d36f4ba7f (diff) |
running_device -> device_t
They both already existed. No sense in having two names for the
same object type.
Diffstat (limited to 'src/emu/machine/pit8253.h')
-rw-r--r-- | src/emu/machine/pit8253.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/pit8253.h b/src/emu/machine/pit8253.h index 41445f1429d..32e05f62498 100644 --- a/src/emu/machine/pit8253.h +++ b/src/emu/machine/pit8253.h @@ -76,8 +76,8 @@ WRITE_LINE_DEVICE_HANDLER( pit8253_gate2_w ); to 0 with pit8253_set_clockin and call pit8253_clkX_w to change the state of the input CLKx signal. */ -int pit8253_get_output(running_device *device, int timer); -void pit8253_set_clockin(running_device *device, int timer, double new_clockin); +int pit8253_get_output(device_t *device, int timer); +void pit8253_set_clockin(device_t *device, int timer, double new_clockin); #endif /* __PIT8253_H__ */ |