CodeWindow: Remove unused parameter from constructor

This commit is contained in:
Lioncash
2016-11-11 13:20:47 -05:00
parent e8af48adfc
commit 492b82042d
3 changed files with 7 additions and 7 deletions

View File

@ -324,7 +324,7 @@ CFrame::CFrame(wxFrame* parent, wxWindowID id, const wxString& title, wxRect geo
// Debugger class
if (UseDebugger)
{
g_pCodeWindow = new CCodeWindow(SConfig::GetInstance(), this, IDM_CODE_WINDOW);
g_pCodeWindow = new CCodeWindow(this, IDM_CODE_WINDOW);
LoadIniPerspectives();
g_pCodeWindow->Load();
}