summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/pl_u.h
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:35:43 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:35:43 +0200
commitf21ab654db620198b388bd25cd0db4c2085c4c8a (patch)
tree4a787355d020e7df09dd0c032f1892f08009e0de /src/core/hle/service/ns/pl_u.h
parentDeglobalize System: Nim (diff)
downloadyuzu-f21ab654db620198b388bd25cd0db4c2085c4c8a.tar
yuzu-f21ab654db620198b388bd25cd0db4c2085c4c8a.tar.gz
yuzu-f21ab654db620198b388bd25cd0db4c2085c4c8a.tar.bz2
yuzu-f21ab654db620198b388bd25cd0db4c2085c4c8a.tar.lz
yuzu-f21ab654db620198b388bd25cd0db4c2085c4c8a.tar.xz
yuzu-f21ab654db620198b388bd25cd0db4c2085c4c8a.tar.zst
yuzu-f21ab654db620198b388bd25cd0db4c2085c4c8a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/pl_u.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/ns/pl_u.h b/src/core/hle/service/ns/pl_u.h
index 7e9fe6220..0d38d7d36 100644
--- a/src/core/hle/service/ns/pl_u.h
+++ b/src/core/hle/service/ns/pl_u.h
@@ -20,7 +20,7 @@ void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& out
class PL_U final : public ServiceFramework<PL_U> {
public:
- PL_U(FileSystem::FileSystemController& fsc);
+ PL_U(Core::System& system, FileSystem::FileSystemController& fsc);
~PL_U() override;
private:
@@ -33,6 +33,7 @@ private:
struct Impl;
std::unique_ptr<Impl> impl;
+ Core::System& system;
};
} // namespace NS