summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2012-09-09 07:09:46 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2012-09-09 07:09:46 +0000
commitdf7f494dbacb218c543eb11c9add8cf1c828171a (patch)
tree2162cea9eb10e55e94fa0482628e5d047498ca71 /src/mess
parent8cf19f400c94effec2affe97bc5ae80a865a40cd (diff)
added missing \n to remaining fatalerror() calls (no whatsnew)
Diffstat (limited to 'src/mess')
-rw-r--r--src/mess/drivers/x68k.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/x68k.c b/src/mess/drivers/x68k.c
index 9ca53a751dd..4dcfd8e9537 100644
--- a/src/mess/drivers/x68k.c
+++ b/src/mess/drivers/x68k.c
@@ -163,7 +163,7 @@ static attotime prescale(int val)
case 6: return attotime::from_nsec(25000);
case 7: return attotime::from_nsec(50000);
default:
- fatalerror("out of range");
+ fatalerror("out of range\n");
}
}
#endif