mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
debugcmd.cpp: Correct the error message too (nw)
This commit is contained in:
parent
5cad2792b4
commit
15dfa918a7
@ -2062,7 +2062,7 @@ void debugger_commands::execute_dump(int ref, const std::vector<std::string> &pa
|
||||
}
|
||||
if (rowsize == 0 || (rowsize % space->byte_to_address(width)) != 0)
|
||||
{
|
||||
m_console.printf("Invalid row size! (must be a positive multiple of %d)\n", width);
|
||||
m_console.printf("Invalid row size! (must be a positive multiple of %d)\n", space->byte_to_address(width));
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user