From 45224188907ce0fa3e60215d414604e0ad9db4d6 Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Tue, 6 Oct 2015 19:00:16 +0300 Subject: [PATCH] GSFrame: remove unused style argument at ShowFullScreen --- pcsx2/gui/FrameForGS.cpp | 2 +- pcsx2/gui/GSFrame.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/gui/FrameForGS.cpp b/pcsx2/gui/FrameForGS.cpp index 2e5ea34962..04dcdca427 100644 --- a/pcsx2/gui/FrameForGS.cpp +++ b/pcsx2/gui/FrameForGS.cpp @@ -441,7 +441,7 @@ void GSFrame::OnCloseWindow(wxCloseEvent& evt) Hide(); // and don't close it. } -bool GSFrame::ShowFullScreen(bool show, long style) +bool GSFrame::ShowFullScreen(bool show) { /*if( show != IsFullScreen() ) Console.WriteLn( Color_StrongMagenta, "(gsFrame) Switching to %s mode...", show ? "Fullscreen" : "Windowed" );*/ diff --git a/pcsx2/gui/GSFrame.h b/pcsx2/gui/GSFrame.h index 7089aa94b1..38bee6b082 100644 --- a/pcsx2/gui/GSFrame.h +++ b/pcsx2/gui/GSFrame.h @@ -103,7 +103,7 @@ public: bool Show( bool shown=true ); wxStaticText* GetLabel_OutputDisabled() const; - bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); + bool ShowFullScreen(bool show); protected: void OnCloseWindow( wxCloseEvent& evt );