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/info.c | |
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/info.c')
-rw-r--r-- | src/emu/info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/info.c b/src/emu/info.c index ff6e5d18283..0ba5e0552db 100644 --- a/src/emu/info.c +++ b/src/emu/info.c @@ -499,7 +499,7 @@ static void print_game_sampleof(FILE *out, const game_driver *game, const machin for (sndnum = 0; sndnum < ARRAY_LENGTH(config->sound) && config->sound[sndnum].type != SOUND_DUMMY; sndnum++) if (config->sound[sndnum].type == SOUND_SAMPLES) { - const char *const *samplenames = ((const struct Samplesinterface *)config->sound[sndnum].config)->samplenames; + const char *const *samplenames = ((const samples_interface *)config->sound[sndnum].config)->samplenames; if (samplenames != NULL) { int sampnum; @@ -533,7 +533,7 @@ static void print_game_sample(FILE *out, const game_driver *game, const machine_ for (sndnum = 0; sndnum < ARRAY_LENGTH(config->sound) && config->sound[sndnum].type != SOUND_DUMMY; sndnum++) if (config->sound[sndnum].type == SOUND_SAMPLES) { - const char *const *samplenames = ((const struct Samplesinterface *)config->sound[sndnum].config)->samplenames; + const char *const *samplenames = ((const samples_interface *)config->sound[sndnum].config)->samplenames; if (samplenames != NULL) { int sampnum; |