summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-09-23 10:13:26 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-09-23 10:13:26 -0400
commit15dfa918a717917bab5869d3f7602a2c68db9de5 (patch)
tree959f66188f1878c25137de01aa9aa52862e203a2 /src/emu/debug/debugcmd.cpp
parent5cad2792b45bf9e73c87ee1ca3b10c47ed160721 (diff)
debugcmd.cpp: Correct the error message too (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp2
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;
}