summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.c
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2012-09-08 11:47:17 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2012-09-08 11:47:17 +0000
commit679e9323bee9b32c69836da62c336b274146136f (patch)
tree280475cd2125d56a92945c5cdfe44494c47d5d5c /src/emu/debug/debugcpu.c
parentf08b72209bf1edd15f267e75a6e61ad16a87ac31 (diff)
added missing \n to some more fatalerror() calls (no whatsnew)
Diffstat (limited to 'src/emu/debug/debugcpu.c')
-rw-r--r--src/emu/debug/debugcpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcpu.c b/src/emu/debug/debugcpu.c
index 85608e428c9..014a0b724be 100644
--- a/src/emu/debug/debugcpu.c
+++ b/src/emu/debug/debugcpu.c
@@ -299,7 +299,7 @@ void debug_cpu_source_script(running_machine &machine, const char *file)
if (machine.phase() == MACHINE_PHASE_RUNNING)
debug_console_printf(machine, "Cannot open command file '%s'\n", file);
else
- fatalerror("Cannot open command file '%s'", file);
+ fatalerror("Cannot open command file '%s'\n", file);
}
}
}
@@ -984,7 +984,7 @@ UINT64 debug_read_opcode(address_space *_space, offs_t address, int size, int ar
break;
default:
- fatalerror("debug_read_opcode: unknown type = %d", space->data_width() / 8 * 10 + size);
+ fatalerror("debug_read_opcode: unknown type = %d\n", space->data_width() / 8 * 10 + size);
break;
}