diff options
Diffstat (limited to 'src/emu/machine/x2212.c')
-rw-r--r-- | src/emu/machine/x2212.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/machine/x2212.c b/src/emu/machine/x2212.c index 9b92dd32b52..7a30e5f9722 100644 --- a/src/emu/machine/x2212.c +++ b/src/emu/machine/x2212.c @@ -178,10 +178,10 @@ DEVICE_GET_INFO(x2212) case DEVINFO_FCT_NVRAM: info->nvram = DEVICE_NVRAM_NAME(x2212); break; /* --- the following bits of info are returned as NULL-terminated strings --- */ - case DEVINFO_STR_NAME: info->s = "X2212"; break; - case DEVINFO_STR_FAMILY: info->s = "EEPROM"; break; - case DEVINFO_STR_VERSION: info->s = "1.0"; break; - case DEVINFO_STR_SOURCE_FILE: info->s = __FILE__; break; - case DEVINFO_STR_CREDITS: info->s = "Copyright Nicola Salmoria and the MAME Team"; break; + case DEVINFO_STR_NAME: strcpy(info->s, "X2212"); break; + case DEVINFO_STR_FAMILY: strcpy(info->s, "EEPROM"); break; + case DEVINFO_STR_VERSION: strcpy(info->s, "1.0"); break; + case DEVINFO_STR_SOURCE_FILE: strcpy(info->s, __FILE__); break; + case DEVINFO_STR_CREDITS: strcpy(info->s, "Copyright Nicola Salmoria and the MAME Team"); break; } } |