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/sound/8950intf.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/sound/8950intf.h')
-rw-r--r-- | src/emu/sound/8950intf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/8950intf.h b/src/emu/sound/8950intf.h index 4487ea8a6f6..eab9d8208d7 100644 --- a/src/emu/sound/8950intf.h +++ b/src/emu/sound/8950intf.h @@ -8,7 +8,7 @@ typedef struct _y8950_interface y8950_interface; struct _y8950_interface { - void (*handler)(running_device *device, int linestate); + void (*handler)(device_t *device, int linestate); read8_device_func keyboardread; write8_device_func keyboardwrite; |