CodeWindow: Remove unused parameter from constructor

This commit is contained in:
Lioncash 2016-11-11 13:20:47 -05:00
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();
}