mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
Memory.Write*/Read* replaced
This commit is contained in:
parent
1b499a6fd5
commit
43a61d0ab9
36 changed files with 223 additions and 483 deletions
|
|
@ -202,7 +202,7 @@ void MemoryViewerPanel::ShowMemory()
|
|||
|
||||
if (Memory.IsGoodAddr(addr))
|
||||
{
|
||||
const u8 rmem = Memory.Read8(addr);
|
||||
const u8 rmem = vm::read8(addr);
|
||||
t_mem_hex_str += wxString::Format("%02x ", rmem);
|
||||
const bool isPrintable = rmem >= 32 && rmem <= 126;
|
||||
t_mem_ascii_str += isPrintable ? std::string(1, rmem) : ".";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue