mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
Changed to non conflicting overload.
This commit is contained in:
parent
a8ddc3e069
commit
f865450b5a
@ -139,7 +139,7 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
|
|||||||
if (DSPCore_GetState() == DSPCORE_STEPPING)
|
if (DSPCore_GetState() == DSPCORE_STEPPING)
|
||||||
{
|
{
|
||||||
DSPCore_Step();
|
DSPCore_Step();
|
||||||
Refresh();
|
Update();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -155,10 +155,10 @@ void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
|
|||||||
void Host_RefreshDSPDebuggerWindow()
|
void Host_RefreshDSPDebuggerWindow()
|
||||||
{
|
{
|
||||||
if (m_DebuggerFrame)
|
if (m_DebuggerFrame)
|
||||||
m_DebuggerFrame->Refresh();
|
m_DebuggerFrame->Update();
|
||||||
}
|
}
|
||||||
|
|
||||||
void DSPDebuggerLLE::Refresh()
|
void DSPDebuggerLLE::Update()
|
||||||
{
|
{
|
||||||
#if defined __WXGTK__
|
#if defined __WXGTK__
|
||||||
if (!wxIsMainThread())
|
if (!wxIsMainThread())
|
||||||
|
@ -50,7 +50,7 @@ public:
|
|||||||
DSPDebuggerLLE(wxWindow *parent, wxWindowID id = wxID_ANY);
|
DSPDebuggerLLE(wxWindow *parent, wxWindowID id = wxID_ANY);
|
||||||
virtual ~DSPDebuggerLLE();
|
virtual ~DSPDebuggerLLE();
|
||||||
|
|
||||||
virtual void Refresh();
|
virtual void Update();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DECLARE_EVENT_TABLE();
|
DECLARE_EVENT_TABLE();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user