summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/5220intf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/5220intf.c')
-rw-r--r--src/emu/sound/5220intf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/sound/5220intf.c b/src/emu/sound/5220intf.c
index 826febd6c6b..65831b056ee 100644
--- a/src/emu/sound/5220intf.c
+++ b/src/emu/sound/5220intf.c
@@ -76,7 +76,7 @@ static void *tms5220_start(int sndindex, int clock, const void *config)
static void *tms5200_start(int sndindex, int clock, const void *config)
{
struct tms5220_info *info = tms5220_start(sndindex, clock, config);
- tms5220_set_variant(info->chip, variant_tms0285);
+ tms5220_set_variant(info->chip, variant_tmc0285);
return info;
}
@@ -269,12 +269,12 @@ void tms5220_get_info(void *token, UINT32 state, sndinfo *info)
}
}
-void tms0285_get_info(void *token, UINT32 state, sndinfo *info)
+void tmc0285_get_info(void *token, UINT32 state, sndinfo *info)
{
switch (state)
{
case SNDINFO_PTR_START: info->start = tms5200_start; break;
- case SNDINFO_STR_NAME: info->s = "TMS0285"; break;
+ case SNDINFO_STR_NAME: info->s = "TMC0285"; break;
default: tms5220_get_info(token, state, info); break;
}
}