summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/speaker.h
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/sound/speaker.h
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/sound/speaker.h')
-rw-r--r--src/emu/sound/speaker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/speaker.h b/src/emu/sound/speaker.h
index cd465441620..89a98108b28 100644
--- a/src/emu/sound/speaker.h
+++ b/src/emu/sound/speaker.h
@@ -21,7 +21,7 @@ struct _speaker_interface
const INT16 *levels; /* optional: pointer to level lookup table */
};
-void speaker_level_w (running_device *device, int new_level);
+void speaker_level_w (device_t *device, int new_level);
DECLARE_LEGACY_SOUND_DEVICE(SPEAKER_SOUND, speaker_sound);