summaryrefslogtreecommitdiffstats
path: root/src/yuzu/applets/controller.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-27 00:36:58 +0100
committerLioncash <mathew1800@gmail.com>2020-10-27 02:06:15 +0100
commit6b5f56532451631b63a57ca858dabc111b05711b (patch)
tree020a521bc01f9ace59eaa94df9f13b6ffd0cc465 /src/yuzu/applets/controller.h
parentgeneral: Use template deduction guides for lock_guard (diff)
downloadyuzu-6b5f56532451631b63a57ca858dabc111b05711b.tar
yuzu-6b5f56532451631b63a57ca858dabc111b05711b.tar.gz
yuzu-6b5f56532451631b63a57ca858dabc111b05711b.tar.bz2
yuzu-6b5f56532451631b63a57ca858dabc111b05711b.tar.lz
yuzu-6b5f56532451631b63a57ca858dabc111b05711b.tar.xz
yuzu-6b5f56532451631b63a57ca858dabc111b05711b.tar.zst
yuzu-6b5f56532451631b63a57ca858dabc111b05711b.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu/applets/controller.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/yuzu/applets/controller.h b/src/yuzu/applets/controller.h
index 2d6d588c6..729ecc831 100644
--- a/src/yuzu/applets/controller.h
+++ b/src/yuzu/applets/controller.h
@@ -120,11 +120,13 @@ public:
explicit QtControllerSelector(GMainWindow& parent);
~QtControllerSelector() override;
- void ReconfigureControllers(std::function<void()> callback,
- Core::Frontend::ControllerParameters parameters) const override;
+ void ReconfigureControllers(
+ std::function<void()> callback,
+ const Core::Frontend::ControllerParameters& parameters) const override;
signals:
- void MainWindowReconfigureControllers(Core::Frontend::ControllerParameters parameters) const;
+ void MainWindowReconfigureControllers(
+ const Core::Frontend::ControllerParameters& parameters) const;
private:
void MainWindowReconfigureFinished();