diff options
author | 2012-09-08 11:47:17 +0000 | |
---|---|---|
committer | 2012-09-08 11:47:17 +0000 | |
commit | 679e9323bee9b32c69836da62c336b274146136f (patch) | |
tree | 280475cd2125d56a92945c5cdfe44494c47d5d5c /src/emu/machine/at28c16.c | |
parent | f08b72209bf1edd15f267e75a6e61ad16a87ac31 (diff) |
added missing \n to some more fatalerror() calls (no whatsnew)
Diffstat (limited to 'src/emu/machine/at28c16.c')
-rw-r--r-- | src/emu/machine/at28c16.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/at28c16.c b/src/emu/machine/at28c16.c index f0584f3fa6f..99069b0ca3f 100644 --- a/src/emu/machine/at28c16.c +++ b/src/emu/machine/at28c16.c @@ -122,12 +122,12 @@ void at28c16_device::nvram_default() { if( m_region->bytes() != AT28C16_DATA_BYTES ) { - fatalerror( "at28c16 region '%s' wrong size (expected size = 0x%X)", tag(), AT28C16_DATA_BYTES ); + fatalerror( "at28c16 region '%s' wrong size (expected size = 0x%X)\n", tag(), AT28C16_DATA_BYTES ); } if( m_region->width() != 1 ) { - fatalerror( "at28c16 region '%s' needs to be an 8-bit region", tag() ); + fatalerror( "at28c16 region '%s' needs to be an 8-bit region\n", tag() ); } for( offs_t offs = 0; offs < AT28C16_DATA_BYTES; offs++ ) |