diff options
author | 2008-01-06 00:47:40 +0000 | |
---|---|---|
committer | 2008-01-06 00:47:40 +0000 | |
commit | ee9f88963c0f29029334fffc12c91cf758c2464c (patch) | |
tree | 85a5a2e967364e9b4fd22087e4b608ec29f158ff /src/emu/cpu/minx/minx.c | |
parent | 33eeead1da2f6c80967a6c607c12f9964e4988b4 (diff) |
Copyright cleanup:
- removed years from copyright notices
- removed redundant (c) from copyright notices
- updated "the MAME Team" to be "Nicola Salmoria and the MAME Team"
Diffstat (limited to 'src/emu/cpu/minx/minx.c')
-rw-r--r-- | src/emu/cpu/minx/minx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/minx/minx.c b/src/emu/cpu/minx/minx.c index 57463104767..158aa6a40cb 100644 --- a/src/emu/cpu/minx/minx.c +++ b/src/emu/cpu/minx/minx.c @@ -286,7 +286,7 @@ void minx_get_info( UINT32 state, cpuinfo *info ) { case CPUINFO_STR_CORE_FAMILY: strcpy( info->s = cpuintrf_temp_str(), "Nintendo Minx" ); break; case CPUINFO_STR_CORE_VERSION: strcpy( info->s = cpuintrf_temp_str(), "0.1" ); break; case CPUINFO_STR_CORE_FILE: strcpy( info->s = cpuintrf_temp_str(), __FILE__ ); break; - case CPUINFO_STR_CORE_CREDITS: strcpy( info->s = cpuintrf_temp_str(), "Copyright (C) 2006 by The MESS Team." ); break; + case CPUINFO_STR_CORE_CREDITS: strcpy( info->s = cpuintrf_temp_str(), "Copyright The MESS Team." ); break; case CPUINFO_STR_FLAGS: sprintf( info->s = cpuintrf_temp_str(), "%c%c%c%c%c%c%c%c-%c%c%c%c%c", regs.F & FLAG_I ? 'I' : '.', |