mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +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)
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user