mirror of https://github.com/PCSX2/pcsx2.git
GSFrame: remove unused style argument at ShowFullScreen
This commit is contained in:
parent
2cd0829a8d
commit
4522418890
|
@ -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" );*/
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue