summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/irs.h
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-09-21 10:49:44 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:30:30 +0200
commit07823b61a1ef924ba8f0d14710afc6e715bfe52f (patch)
treef4c24231970bad5bc67d2c74178252743dd2f565 /src/core/hle/service/hid/irs.h
parentDeglobalize System: Hid (diff)
downloadyuzu-07823b61a1ef924ba8f0d14710afc6e715bfe52f.tar
yuzu-07823b61a1ef924ba8f0d14710afc6e715bfe52f.tar.gz
yuzu-07823b61a1ef924ba8f0d14710afc6e715bfe52f.tar.bz2
yuzu-07823b61a1ef924ba8f0d14710afc6e715bfe52f.tar.lz
yuzu-07823b61a1ef924ba8f0d14710afc6e715bfe52f.tar.xz
yuzu-07823b61a1ef924ba8f0d14710afc6e715bfe52f.tar.zst
yuzu-07823b61a1ef924ba8f0d14710afc6e715bfe52f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/irs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/irs.h b/src/core/hle/service/hid/irs.h
index 12de6bfb3..eb4e898dd 100644
--- a/src/core/hle/service/hid/irs.h
+++ b/src/core/hle/service/hid/irs.h
@@ -15,7 +15,7 @@ namespace Service::HID {
class IRS final : public ServiceFramework<IRS> {
public:
- explicit IRS();
+ explicit IRS(Core::System& system);
~IRS() override;
private:
@@ -39,6 +39,7 @@ private:
void ActivateIrsensorWithFunctionLevel(Kernel::HLERequestContext& ctx);
Kernel::SharedPtr<Kernel::SharedMemory> shared_mem;
const u32 device_handle{0xABCD};
+ Core::System& system;
};
class IRS_SYS final : public ServiceFramework<IRS_SYS> {