diff options
author | 2019-09-23 10:13:26 -0400 | |
---|---|---|
committer | 2019-09-23 10:13:26 -0400 | |
commit | 15dfa918a717917bab5869d3f7602a2c68db9de5 (patch) | |
tree | 959f66188f1878c25137de01aa9aa52862e203a2 /src/emu/debug/debugcmd.cpp | |
parent | 5cad2792b45bf9e73c87ee1ca3b10c47ed160721 (diff) |
debugcmd.cpp: Correct the error message too (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r-- | src/emu/debug/debugcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 6a36ef2dd73..cd9d9dcf743 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -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; } |