mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
Fix pcatmem command (probably regressed in 360d3a5950
)
This commit is contained in:
parent
788eac6caa
commit
18d89a1d04
@ -3852,7 +3852,7 @@ void debugger_commands::execute_pcatmem(int spacenum, const std::vector<std::str
|
||||
}
|
||||
|
||||
// Recover the pc & print
|
||||
const offs_t result = space->device().debug()->track_mem_pc_from_space_address_data(spacenum, address, data);
|
||||
const offs_t result = space->device().debug()->track_mem_pc_from_space_address_data(space->spacenum(), address, data);
|
||||
if (result != (offs_t)(-1))
|
||||
m_console.printf("%02x\n", result);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user