diff --git a/src/gui/wxgui/GeneralSettings2.cpp b/src/gui/wxgui/GeneralSettings2.cpp index 1cc00fad..2fab2d38 100644 --- a/src/gui/wxgui/GeneralSettings2.cpp +++ b/src/gui/wxgui/GeneralSettings2.cpp @@ -188,7 +188,7 @@ wxPanel* GeneralSettings2::AddGeneralPage(wxNotebook* notebook) m_save_window_position_size->SetToolTip(_("Restores the last known window position and size when starting Cemu")); third_row->Add(m_save_window_position_size, 0, topflag, 5); CountRowElement(); - //second_row->AddSpacer(10); + //third_row->AddSpacer(10); m_save_padwindow_position_size = new wxCheckBox(box, wxID_ANY, _("Remember pad window position")); m_save_padwindow_position_size->SetToolTip(_("Restores the last known pad window position and size when opening it")); third_row->Add(m_save_padwindow_position_size, 0, topflag, 5); @@ -202,7 +202,7 @@ wxPanel* GeneralSettings2::AddGeneralPage(wxNotebook* notebook) #ifndef ENABLE_DISCORD_RPC m_discord_presence->Disable(); #endif - //second_row->AddSpacer(10); + //third_row->AddSpacer(10); m_fullscreen_menubar = new wxCheckBox(box, wxID_ANY, _("Fullscreen menu bar")); m_fullscreen_menubar->SetToolTip(_("Displays the menu bar when Cemu is running in fullscreen mode and the mouse cursor is moved to the top")); third_row->Add(m_fullscreen_menubar, 0, botflag, 5); @@ -222,7 +222,7 @@ wxPanel* GeneralSettings2::AddGeneralPage(wxNotebook* notebook) #if BOOST_OS_LINUX && defined(ENABLE_FERAL_GAMEMODE) m_feral_gamemode = new wxCheckBox(box, wxID_ANY, _("Enable Feral GameMode")); m_feral_gamemode->SetToolTip(_("Use FeralInteractive GameMode if installed.")); - second_row->Add(m_feral_gamemode, 0, botflag, 5); + third_row->Add(m_feral_gamemode, 0, botflag, 5); CountRowElement(); #endif diff --git a/src/gui/wxgui/input/InputSettings2.cpp b/src/gui/wxgui/input/InputSettings2.cpp index 8808c80a..5595b291 100644 --- a/src/gui/wxgui/input/InputSettings2.cpp +++ b/src/gui/wxgui/input/InputSettings2.cpp @@ -15,6 +15,7 @@ #include #include #include +#include #include "config/ActiveSettings.h" #include "wxgui/input/InputAPIAddWindow.h" diff --git a/src/gui/wxgui/input/panels/InputPanel.h b/src/gui/wxgui/input/panels/InputPanel.h index 430386b8..818708eb 100644 --- a/src/gui/wxgui/input/panels/InputPanel.h +++ b/src/gui/wxgui/input/panels/InputPanel.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include "input/emulated/EmulatedController.h" #include "input/api/Controller.h"