summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/ldvp931.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-12-31 21:42:55 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-12-31 21:42:55 +0000
commit3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch)
tree415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/machine/ldvp931.c
parent2ca38fad3e665d2e4e0212263a07819d36f4ba7f (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/ldvp931.c')
-rw-r--r--src/emu/machine/ldvp931.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/ldvp931.c b/src/emu/machine/ldvp931.c
index e64554c04ae..24cd7b77fd6 100644
--- a/src/emu/machine/ldvp931.c
+++ b/src/emu/machine/ldvp931.c
@@ -49,7 +49,7 @@
struct _ldplayer_data
{
/* low-level emulation data */
- running_device *cpu; /* CPU index of the 8049 */
+ device_t *cpu; /* CPU index of the 8049 */
timer_device * tracktimer; /* timer device */
vp931_data_ready_func data_ready_cb; /* data ready callback */
@@ -187,7 +187,7 @@ const ldplayer_interface vp931_interface =
ready callback
-------------------------------------------------*/
-void vp931_set_data_ready_callback(running_device *device, vp931_data_ready_func callback)
+void vp931_set_data_ready_callback(device_t *device, vp931_data_ready_func callback)
{
laserdisc_state *ld = ldcore_get_safe_token(device);
ld->player->data_ready_cb = callback;