From 65478819206d92863232a375e9065a93e1ba3831 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sun, 25 Oct 2015 21:17:59 +0100 Subject: [PATCH] pcsx2: fix gcc reorder warning (due to previous init commit) Lesson lear for myself, next time compile PR on my box before a merge --- pcsx2/gui/MainFrame.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/MainFrame.h b/pcsx2/gui/MainFrame.h index b8417d1d1a..17010d607b 100644 --- a/pcsx2/gui/MainFrame.h +++ b/pcsx2/gui/MainFrame.h @@ -48,8 +48,8 @@ protected: MenuItemAddonList m_PluginMenuItems; public: + wxMenu& MyMenu; PluginsEnum_t PluginId; - wxMenu& MyMenu; public: PerPluginMenuInfo() : MyMenu(*new wxMenu()), PluginId (PluginId_Count) {}