diff options
Diffstat (limited to 'src/emu/sound/sp0256.c')
-rw-r--r-- | src/emu/sound/sp0256.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/sound/sp0256.c b/src/emu/sound/sp0256.c index fc595277ea5..deedd736bd3 100644 --- a/src/emu/sound/sp0256.c +++ b/src/emu/sound/sp0256.c @@ -1362,17 +1362,17 @@ SND_GET_INFO( sp0256 ) /* --- 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( sp0256 ); break; - case SNDINFO_PTR_START: info->start = SND_START_NAME( sp0256 ); break; - case SNDINFO_PTR_STOP: info->stop = SND_STOP_NAME( sp0256 ); break; - case SNDINFO_PTR_RESET: info->reset = SND_RESET_NAME( sp0256 ); break; + case SNDINFO_PTR_SET_INFO: info->set_info = SND_SET_INFO_NAME( sp0256 ); break; + case SNDINFO_PTR_START: info->start = SND_START_NAME( sp0256 ); break; + case SNDINFO_PTR_STOP: info->stop = SND_STOP_NAME( sp0256 ); break; + case SNDINFO_PTR_RESET: info->reset = SND_RESET_NAME( sp0256 ); break; /* --- the following bits of info are returned as NULL-terminated strings --- */ - case SNDINFO_STR_NAME: info->s = "SP0256"; break; - case SNDINFO_STR_CORE_FAMILY: info->s = "GI"; 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 Joseph Zbiciak, tim lindner"; break; + case SNDINFO_STR_NAME: strcpy(info->s, "SP0256"); break; + case SNDINFO_STR_CORE_FAMILY: strcpy(info->s, "GI"); 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 Joseph Zbiciak, tim lindner"); break; } } |