mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
debugcmd.cpp: Give this error message a newline (nw)
This commit is contained in:
parent
1d92b91aa9
commit
b924b468b4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue