remove stutter in dump command ascii bytes (nw)

This commit is contained in:
smf- 2017-12-26 20:32:16 +00:00
parent 29202d2cf1
commit e898042fd7

View File

@ -1965,7 +1965,7 @@ void debugger_commands::execute_dump(int ref, const std::vector<std::string> &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))