summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-07 22:50:28 +0100
committerLioncash <mathew1800@gmail.com>2016-12-07 22:50:32 +0100
commitd3f4fd1777c692702c6f56588c7035dff1c9046c (patch)
treeabce799f3ceedd73ff5e3fd26d14bfb031787e8c /src/core/hle
parentImplement Frame rate limiter (#2223) (diff)
downloadyuzu-d3f4fd1777c692702c6f56588c7035dff1c9046c.tar
yuzu-d3f4fd1777c692702c6f56588c7035dff1c9046c.tar.gz
yuzu-d3f4fd1777c692702c6f56588c7035dff1c9046c.tar.bz2
yuzu-d3f4fd1777c692702c6f56588c7035dff1c9046c.tar.lz
yuzu-d3f4fd1777c692702c6f56588c7035dff1c9046c.tar.xz
yuzu-d3f4fd1777c692702c6f56588c7035dff1c9046c.tar.zst
yuzu-d3f4fd1777c692702c6f56588c7035dff1c9046c.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/applets/applet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/applets/applet.h b/src/core/hle/applets/applet.h
index bfdcad126..b7594d100 100644
--- a/src/core/hle/applets/applet.h
+++ b/src/core/hle/applets/applet.h
@@ -14,7 +14,6 @@ namespace Applets {
class Applet {
public:
virtual ~Applet() {}
- Applet(Service::APT::AppletId id) : id(id) {}
/**
* Creates an instance of the Applet subclass identified by the parameter.
@@ -56,6 +55,8 @@ public:
virtual void Update() = 0;
protected:
+ explicit Applet(Service::APT::AppletId id) : id(id) {}
+
/**
* Handles the Applet start event, triggered from the application.
* @param parameter Parameter data to handle.