mirror of
https://github.com/holub/mame
synced 2025-05-28 08:33:05 +03:00
Fixed a bug preventing memory display of INT8/UINT8 in debugger [Couriersud]
This commit is contained in:
parent
f727c35b78
commit
00391468b0
@ -491,7 +491,7 @@ void debug_view_memory::recompute()
|
||||
}
|
||||
|
||||
// derive total sizes from that
|
||||
m_total.y = ((UINT64)m_maxaddr - (UINT64)m_byte_offset + (UINT64)m_bytes_per_row - 1) / m_bytes_per_row;
|
||||
m_total.y = ((UINT64)m_maxaddr - (UINT64)m_byte_offset + (UINT64)m_bytes_per_row /*- 1*/) / m_bytes_per_row;
|
||||
|
||||
// reset the current cursor position
|
||||
set_cursor_pos(pos);
|
||||
|
Loading…
Reference in New Issue
Block a user