diff options
Diffstat (limited to 'src/emu/sound/cdp1869.c')
-rw-r--r-- | src/emu/sound/cdp1869.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/sound/cdp1869.c b/src/emu/sound/cdp1869.c index 8dc3af14a4c..9b9afe6bed5 100644 --- a/src/emu/sound/cdp1869.c +++ b/src/emu/sound/cdp1869.c @@ -188,16 +188,16 @@ SND_GET_INFO( cdp1869 ) /* --- the following bits of info are returned as 64-bit signed integers --- */ /* --- the following bits of info are returned as pointers to data or functions --- */ - case SNDINFO_PTR_SET_INFO: info->set_info = SND_SET_INFO_NAME( cdp1869 ); break; - case SNDINFO_PTR_START: info->start = SND_START_NAME( cdp1869 ); break; - case SNDINFO_PTR_STOP: /* nothing */ break; - case SNDINFO_PTR_RESET: /* nothing */ break; + case SNDINFO_PTR_SET_INFO: info->set_info = SND_SET_INFO_NAME( cdp1869 ); break; + case SNDINFO_PTR_START: info->start = SND_START_NAME( cdp1869 ); break; + case SNDINFO_PTR_STOP: /* nothing */ break; + case SNDINFO_PTR_RESET: /* nothing */ break; /* --- the following bits of info are returned as NULL-terminated strings --- */ - case SNDINFO_STR_NAME: info->s = "CDP1869"; break; - case SNDINFO_STR_CORE_FAMILY: info->s = "RCA CDP1869"; break; - case SNDINFO_STR_CORE_VERSION: info->s = "1.0"; break; - case SNDINFO_STR_CORE_FILE: info->s = __FILE__; break; - case SNDINFO_STR_CORE_CREDITS: info->s = "Copyright Nicola Salmoria and the MAME Team"; break; + case SNDINFO_STR_NAME: strcpy(info->s, "CDP1869"); break; + case SNDINFO_STR_CORE_FAMILY: strcpy(info->s, "RCA CDP1869"); break; + case SNDINFO_STR_CORE_VERSION: strcpy(info->s, "1.0"); break; + case SNDINFO_STR_CORE_FILE: strcpy(info->s, __FILE__); break; + case SNDINFO_STR_CORE_CREDITS: strcpy(info->s, "Copyright Nicola Salmoria and the MAME Team"); break; } } |