From c6d8d52041a6fc66bfa6116402f7aebb9d098850 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Thu, 15 Aug 2013 15:05:20 +0200 Subject: [PATCH] Fix a warning introduced by the recent netplay UI changes --- Source/Core/DolphinWX/Src/NetWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/NetWindow.cpp b/Source/Core/DolphinWX/Src/NetWindow.cpp index ac315025ba..fdd54a2a3c 100644 --- a/Source/Core/DolphinWX/Src/NetWindow.cpp +++ b/Source/Core/DolphinWX/Src/NetWindow.cpp @@ -282,8 +282,8 @@ NetPlayDiag::NetPlayDiag(wxWindow* const parent, const CGameListCtrl* const game const std::string& game, const bool is_hosting) : wxFrame(parent, wxID_ANY, wxT(NETPLAY_TITLEBAR), wxDefaultPosition, wxDefaultSize) , m_selected_game(game) - , m_game_list(game_list) , m_start_btn(NULL) + , m_game_list(game_list) { wxPanel* const panel = new wxPanel(this);