diff options
author | 2008-08-08 01:50:00 +0000 | |
---|---|---|
committer | 2008-08-08 01:50:00 +0000 | |
commit | cc94c8207d3092f2b6e84861329ce8370a4f93fc (patch) | |
tree | 830e8fcd37314e964cfac81d4c29276980e9826a /src/emu/sound/sn76477.h | |
parent | 3f73ea77f018ed6ec4a0cc103434c8c3344618d8 (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/sn76477.h')
-rw-r--r-- | src/emu/sound/sn76477.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/sound/sn76477.h b/src/emu/sound/sn76477.h index d224cbe2ca8..5eb7b137f89 100644 --- a/src/emu/sound/sn76477.h +++ b/src/emu/sound/sn76477.h @@ -46,7 +46,8 @@ * *****************************************************************************/ -struct SN76477interface +typedef struct _SN76477_interface SN76477_interface; +struct _SN76477_interface { double noise_clock_res; double noise_filter_res; |