diff --git a/src/duckstation-qt/gamepatchsettingswidget.cpp b/src/duckstation-qt/gamepatchsettingswidget.cpp index 53d2e48cc..0c01278aa 100644 --- a/src/duckstation-qt/gamepatchsettingswidget.cpp +++ b/src/duckstation-qt/gamepatchsettingswidget.cpp @@ -15,9 +15,8 @@ #include GamePatchDetailsWidget::GamePatchDetailsWidget(std::string name, const std::string& author, - const std::string& description, bool enabled, - bool disallowed_for_achievements, SettingsWindow* dialog, - QWidget* parent) + const std::string& description, bool disallowed_for_achievements, + bool enabled, SettingsWindow* dialog, QWidget* parent) : QWidget(parent), m_dialog(dialog), m_name(name) { m_ui.setupUi(this); diff --git a/src/duckstation-qt/gamepatchsettingswidget.h b/src/duckstation-qt/gamepatchsettingswidget.h index d093bdf02..79dd97c5d 100644 --- a/src/duckstation-qt/gamepatchsettingswidget.h +++ b/src/duckstation-qt/gamepatchsettingswidget.h @@ -19,8 +19,8 @@ class GamePatchDetailsWidget : public QWidget Q_OBJECT public: - GamePatchDetailsWidget(std::string name, const std::string& author, const std::string& description, bool enabled, - bool disallowed_for_achievements, SettingsWindow* dialog, QWidget* parent); + GamePatchDetailsWidget(std::string name, const std::string& author, const std::string& description, + bool disallowed_for_achievements, bool enabled, SettingsWindow* dialog, QWidget* parent); ~GamePatchDetailsWidget(); private Q_SLOTS: