From 15dfa918a717917bab5869d3f7602a2c68db9de5 Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 23 Sep 2019 10:13:26 -0400 Subject: debugcmd.cpp: Correct the error message too (nw) --- src/emu/debug/debugcmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/emu/debug/debugcmd.cpp') 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 &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; } -- cgit v1.2.3