GSFrame: remove unused style argument at ShowFullScreen

This commit is contained in:
Avi Halachmi (:avih) 2015-10-06 19:00:16 +03:00
parent 2cd0829a8d
commit 4522418890
2 changed files with 2 additions and 2 deletions

View File

@ -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" );*/

View File

@ -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 );