Merge pull request #1136 from lioncash/memory-view
DolphinWX: Fix the memory view in the debugger
This commit is contained in:
commit
770a9a42a5
|
@ -24,6 +24,7 @@
|
|||
#include "Common/CommonTypes.h"
|
||||
#include "Common/DebugInterface.h"
|
||||
#include "Common/StringUtil.h"
|
||||
#include "Core/HW/Memmap.h"
|
||||
#include "DolphinWX/Globals.h"
|
||||
#include "DolphinWX/WxUtils.h"
|
||||
#include "DolphinWX/Debugger/DebuggerUIUtil.h"
|
||||
|
@ -310,6 +311,9 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
|
|||
dc.SetTextForeground(*wxBLACK);
|
||||
}
|
||||
|
||||
if (!Memory::IsRAMAddress(address))
|
||||
continue;
|
||||
|
||||
if (debugger->IsAlive())
|
||||
{
|
||||
std::string dis;
|
||||
|
|
Loading…
Reference in New Issue