Skip to content

Commit

Permalink
Merge pull request #1136 from lioncash/memory-view
Browse files Browse the repository at this point in the history
DolphinWX: Fix the memory view in the debugger
  • Loading branch information
lioncash committed Sep 21, 2014
2 parents 9206dd0 + dc65ef3 commit 770a9a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/Core/DolphinWX/Debugger/MemoryView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -310,6 +311,9 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
dc.SetTextForeground(*wxBLACK);
}

if (!Memory::IsRAMAddress(address))
continue;

if (debugger->IsAlive())
{
std::string dis;
Expand Down

0 comments on commit 770a9a4

Please sign in to comment.