From 400381a24f7eefc52c493f99da8cc494e29604f5 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Thu, 3 Sep 2009 22:08:54 +0000 Subject: [PATCH] Fix crash in non-debugger (/d) mode. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4189 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/Frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/Frame.cpp b/Source/Core/DolphinWX/Src/Frame.cpp index 5dbe8a35a0..4de7210108 100644 --- a/Source/Core/DolphinWX/Src/Frame.cpp +++ b/Source/Core/DolphinWX/Src/Frame.cpp @@ -311,7 +311,7 @@ CFrame::CFrame(wxFrame* parent, bool _UseDebugger, bool ShowLogWindow, long style) - : wxFrame(parent, id, title, pos, size, style) + : wxFrame(parent, id, title, pos, size, style), g_pCodeWindow(NULL) , m_LogWindow(NULL), m_MenuBar(NULL), m_ToolBar(NULL), m_ToolBarDebug(NULL), m_ToolBarAui(NULL) , m_pStatusBar(NULL), m_GameListCtrl(NULL), m_Panel(NULL) , UseDebugger(_UseDebugger), m_bEdit(false), m_bTabSplit(false), m_bNoDocking(false), bRenderToMain(true)