mirror of https://github.com/stella-emu/stella.git
superfluous parameter removed in VideoDialog
This commit is contained in:
parent
d7a34ec7dd
commit
b2d1c37f1e
|
@ -122,7 +122,7 @@ OptionsDialog::OptionsDialog(OSystem& osystem, DialogContainer& parent,
|
|||
addCancelWidget(b);
|
||||
|
||||
// Now create all the dialogs attached to each menu button
|
||||
myVideoDialog = make_unique<VideoDialog>(osystem, parent, font, max_w, max_h, myMode == launcher);
|
||||
myVideoDialog = make_unique<VideoDialog>(osystem, parent, font, max_w, max_h);
|
||||
myAudioDialog = make_unique<AudioDialog>(osystem, parent, font);
|
||||
myInputDialog = make_unique<InputDialog>(osystem, parent, font, max_w, max_h);
|
||||
myUIDialog = make_unique<UIDialog>(osystem, parent, font);
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
VideoDialog::VideoDialog(OSystem& osystem, DialogContainer& parent,
|
||||
const GUI::Font& font, int max_w, int max_h, bool isGlobal)
|
||||
const GUI::Font& font, int max_w, int max_h)
|
||||
: Dialog(osystem, parent)
|
||||
{
|
||||
const int VGAP = 4;
|
||||
|
|
|
@ -35,7 +35,7 @@ class VideoDialog : public Dialog
|
|||
{
|
||||
public:
|
||||
VideoDialog(OSystem& osystem, DialogContainer& parent, const GUI::Font& font,
|
||||
int max_w, int max_h, bool isGlobal);
|
||||
int max_w, int max_h);
|
||||
virtual ~VideoDialog() = default;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue