debugcmd.cpp: Give this error message a newline (nw)

This commit is contained in:
AJR 2017-08-08 14:38:07 -04:00
parent 1d92b91aa9
commit b924b468b4

View File

@ -1779,7 +1779,7 @@ void debugger_commands::execute_dump(int ref, const std::vector<std::string> &pa
} }
if (rowsize == 0 || (rowsize % width) != 0) 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; return;
} }