mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00
Merge pull request #4284 from leoetlino/memview-crash-fix
MemoryView: Don't segfault if Core isn't running
This commit is contained in:
commit
05d6157c9b
@ -312,11 +312,11 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
|
|||||||
dc.SetTextForeground(*wxBLACK);
|
dc.SetTextForeground(*wxBLACK);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!PowerPC::HostIsRAMAddress(address))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (debugger->IsAlive())
|
if (debugger->IsAlive())
|
||||||
{
|
{
|
||||||
|
if (!PowerPC::HostIsRAMAddress(address))
|
||||||
|
continue;
|
||||||
|
|
||||||
std::string dis;
|
std::string dis;
|
||||||
u32 mem_data = debugger->ReadExtraMemory(memory, address);
|
u32 mem_data = debugger->ReadExtraMemory(memory, address);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user