summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_ae.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-07 01:46:36 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-25 02:07:10 +0200
commit3c4238657d326a7d85cbc9152ca16483383c20e7 (patch)
tree2b71e5603db308fbe6ec27b55fa64153602c2675 /src/core/hle/service/am/applet_ae.h
parentgeneral_frontend: Add documentation for parental controls and ecommerce applets (diff)
downloadyuzu-3c4238657d326a7d85cbc9152ca16483383c20e7.tar
yuzu-3c4238657d326a7d85cbc9152ca16483383c20e7.tar.gz
yuzu-3c4238657d326a7d85cbc9152ca16483383c20e7.tar.bz2
yuzu-3c4238657d326a7d85cbc9152ca16483383c20e7.tar.lz
yuzu-3c4238657d326a7d85cbc9152ca16483383c20e7.tar.xz
yuzu-3c4238657d326a7d85cbc9152ca16483383c20e7.tar.zst
yuzu-3c4238657d326a7d85cbc9152ca16483383c20e7.zip
Diffstat (limited to 'src/core/hle/service/am/applet_ae.h')
-rw-r--r--src/core/hle/service/am/applet_ae.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applet_ae.h b/src/core/hle/service/am/applet_ae.h
index 902db2665..9e006cd9d 100644
--- a/src/core/hle/service/am/applet_ae.h
+++ b/src/core/hle/service/am/applet_ae.h
@@ -18,7 +18,7 @@ namespace AM {
class AppletAE final : public ServiceFramework<AppletAE> {
public:
explicit AppletAE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger,
- std::shared_ptr<AppletMessageQueue> msg_queue);
+ std::shared_ptr<AppletMessageQueue> msg_queue, Core::System& system);
~AppletAE() override;
const std::shared_ptr<AppletMessageQueue>& GetMessageQueue() const;
@@ -30,6 +30,7 @@ private:
std::shared_ptr<NVFlinger::NVFlinger> nvflinger;
std::shared_ptr<AppletMessageQueue> msg_queue;
+ Core::System& system;
};
} // namespace AM