mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
remove stutter in dump command ascii bytes (nw)
This commit is contained in:
parent
29202d2cf1
commit
e898042fd7
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user