summaryrefslogtreecommitdiffstats
path: root/src/core/frontend
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-03-27 05:26:28 +0200
committergerman77 <juangerman-13@hotmail.com>2023-03-30 15:49:44 +0200
commit11edba4974ab702deb54371bf1bf7644f1dd8e38 (patch)
tree46d733ac751af1426de717991feb1e262bea117b /src/core/frontend
parentMerge pull request #9505 from liamwhite/request-exit (diff)
downloadyuzu-11edba4974ab702deb54371bf1bf7644f1dd8e38.tar
yuzu-11edba4974ab702deb54371bf1bf7644f1dd8e38.tar.gz
yuzu-11edba4974ab702deb54371bf1bf7644f1dd8e38.tar.bz2
yuzu-11edba4974ab702deb54371bf1bf7644f1dd8e38.tar.lz
yuzu-11edba4974ab702deb54371bf1bf7644f1dd8e38.tar.xz
yuzu-11edba4974ab702deb54371bf1bf7644f1dd8e38.tar.zst
yuzu-11edba4974ab702deb54371bf1bf7644f1dd8e38.zip
Diffstat (limited to 'src/core/frontend')
-rw-r--r--src/core/frontend/applets/controller.cpp2
-rw-r--r--src/core/frontend/applets/controller.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/frontend/applets/controller.cpp b/src/core/frontend/applets/controller.cpp
index 8e586e938..3300d4f79 100644
--- a/src/core/frontend/applets/controller.cpp
+++ b/src/core/frontend/applets/controller.cpp
@@ -71,7 +71,7 @@ void DefaultControllerApplet::ReconfigureControllers(ReconfigureCallback callbac
}
}
- callback();
+ callback(true);
}
} // namespace Core::Frontend
diff --git a/src/core/frontend/applets/controller.h b/src/core/frontend/applets/controller.h
index 5c488387d..19a2db6bf 100644
--- a/src/core/frontend/applets/controller.h
+++ b/src/core/frontend/applets/controller.h
@@ -37,7 +37,7 @@ struct ControllerParameters {
class ControllerApplet : public Applet {
public:
- using ReconfigureCallback = std::function<void()>;
+ using ReconfigureCallback = std::function<void(bool)>;
virtual ~ControllerApplet();