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/flt_rc.c | |
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/flt_rc.c')
-rw-r--r-- | src/emu/sound/flt_rc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/sound/flt_rc.c b/src/emu/sound/flt_rc.c index 377dfe32194..9369631c946 100644 --- a/src/emu/sound/flt_rc.c +++ b/src/emu/sound/flt_rc.c @@ -5,14 +5,14 @@ typedef struct _filter_rc_state filter_rc_state; struct _filter_rc_state { - running_device *device; + device_t *device; sound_stream * stream; int k; int memory; int type; }; -INLINE filter_rc_state *get_safe_token(running_device *device) +INLINE filter_rc_state *get_safe_token(device_t *device) { assert(device != NULL); assert(device->type() == FILTER_RC); @@ -102,7 +102,7 @@ static DEVICE_START( filter_rc ) } -void filter_rc_set_RC(running_device *device, int type, double R1, double R2, double R3, double C) +void filter_rc_set_RC(device_t *device, int type, double R1, double R2, double R3, double C) { filter_rc_state *info = get_safe_token(device); |