diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index f2e616b780c..c35c9ad2191 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -1965,7 +1965,7 @@ void debugger_commands::execute_dump(int ref, const std::vector &pa if (ascii) { util::stream_format(output, " "); - for (u64 j = 0; j < rowsize && (i + j) <= endoffset; j++) + for (u64 j = 0; j < rowsize && (i + j) <= endoffset; j += width) { offs_t curaddr = i + j; if (space->device().memory().translate(space->spacenum(), TRANSLATE_READ_DEBUG, curaddr))