summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-04-22 23:56:56 +0200
committerZach Hilman <zachhilman@gmail.com>2019-09-21 22:43:10 +0200
commitc6ff4a6f4d05eb380616be57e4088003e7aedfcb (patch)
treea923240a1505dd0ebbf476f43fe7e653a07e3217 /src/core/hle/service/filesystem/fsp_srv.h
parentsettings: Update LogSettings to show NAND/SDMC paths from FileUtil (diff)
downloadyuzu-c6ff4a6f4d05eb380616be57e4088003e7aedfcb.tar
yuzu-c6ff4a6f4d05eb380616be57e4088003e7aedfcb.tar.gz
yuzu-c6ff4a6f4d05eb380616be57e4088003e7aedfcb.tar.bz2
yuzu-c6ff4a6f4d05eb380616be57e4088003e7aedfcb.tar.lz
yuzu-c6ff4a6f4d05eb380616be57e4088003e7aedfcb.tar.xz
yuzu-c6ff4a6f4d05eb380616be57e4088003e7aedfcb.tar.zst
yuzu-c6ff4a6f4d05eb380616be57e4088003e7aedfcb.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.h b/src/core/hle/service/filesystem/fsp_srv.h
index b5486a193..494348598 100644
--- a/src/core/hle/service/filesystem/fsp_srv.h
+++ b/src/core/hle/service/filesystem/fsp_srv.h
@@ -32,7 +32,7 @@ enum class LogMode : u32 {
class FSP_SRV final : public ServiceFramework<FSP_SRV> {
public:
- explicit FSP_SRV(const Core::Reporter& reporter);
+ explicit FSP_SRV(FileSystemController& fsc);
~FSP_SRV() override;
private:
@@ -51,6 +51,8 @@ private:
void OutputAccessLogToSdCard(Kernel::HLERequestContext& ctx);
void GetAccessLogVersionInfo(Kernel::HLERequestContext& ctx);
+ FileSystemController& fsc;
+
FileSys::VirtualFile romfs;
u64 current_process_id = 0;
u32 access_log_program_index = 0;