diff options
author | 2017-08-08 14:38:07 -0400 | |
---|---|---|
committer | 2017-08-08 14:38:07 -0400 | |
commit | b924b468b43c22b87bb770bc97317c7015b1d540 (patch) | |
tree | b9bfc8f1ee2df54a964941c15b41c9018e7d66dd /src/emu/debug/debugcmd.cpp | |
parent | 1d92b91aa98a04581907f951cc20ddd19248039c (diff) |
debugcmd.cpp: Give this error message a newline (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r-- | src/emu/debug/debugcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index f3650bdef92..c1e96054164 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -1779,7 +1779,7 @@ void debugger_commands::execute_dump(int ref, const std::vector<std::string> &pa } if (rowsize == 0 || (rowsize % width) != 0) { - m_console.printf("Invalid row size! (must be a positive multiple of %d)", width); + m_console.printf("Invalid row size! (must be a positive multiple of %d)\n", width); return; } |