summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/custom.c
diff options
context:
space:
mode:
author Derrick Renaud <derrickr@mamedev.org>2008-08-08 01:50:00 +0000
committer Derrick Renaud <derrickr@mamedev.org>2008-08-08 01:50:00 +0000
commitcc94c8207d3092f2b6e84861329ce8370a4f93fc (patch)
tree830e8fcd37314e964cfac81d4c29276980e9826a /src/emu/sound/custom.c
parent3f73ea77f018ed6ec4a0cc103434c8c3344618d8 (diff)
Updated structure and naming conventions of the following sound interfaces.
struct CustomSound_interface to custom_sound_interface struct Samplesinterface to samples_interface struct SN76477interface to SN76477_interface struct AY8910interface to AY8910_interface
Diffstat (limited to 'src/emu/sound/custom.c')
-rw-r--r--src/emu/sound/custom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/custom.c b/src/emu/sound/custom.c
index d54c42616c4..3384da40cb0 100644
--- a/src/emu/sound/custom.c
+++ b/src/emu/sound/custom.c
@@ -4,7 +4,7 @@
struct custom_info
{
- const struct CustomSound_interface *intf;
+ const custom_sound_interface *intf;
void * token;
};