From b924b468b43c22b87bb770bc97317c7015b1d540 Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 8 Aug 2017 14:38:07 -0400 Subject: [PATCH] debugcmd.cpp: Give this error message a newline (nw) --- src/emu/debug/debugcmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &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; }