superfluous parameter removed in VideoDialog

This commit is contained in:
thrust26 2017-12-19 12:35:29 +01:00
parent d7a34ec7dd
commit b2d1c37f1e
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

@ -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: