aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/filesystem/fsp_srv.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-08 00:49:00 -0500
committerLiam <byteslice@airmail.cc>2024-01-11 11:28:52 -0500
commitaae9eea53208fc0924c90ebb1272fcfaa3f23e0c (patch)
tree050ccc76dd2fad3c3f81197aa6435674caeac86f /src/core/hle/service/filesystem/fsp_srv.h
parent82b58668edcb078896a1184d158a08c58f841dd5 (diff)
fsp-srv: use program registry for SetCurrentProcess
Diffstat (limited to 'src/core/hle/service/filesystem/fsp_srv.h')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.h b/src/core/hle/service/filesystem/fsp_srv.h
index 280bc9867..26980af99 100644
--- a/src/core/hle/service/filesystem/fsp_srv.h
+++ b/src/core/hle/service/filesystem/fsp_srv.h
@@ -17,6 +17,9 @@ class FileSystemBackend;
namespace Service::FileSystem {
+class RomFsController;
+class SaveDataController;
+
enum class AccessLogVersion : u32 {
V7_0_0 = 2,
@@ -67,6 +70,9 @@ private:
u64 current_process_id = 0;
u32 access_log_program_index = 0;
AccessLogMode access_log_mode = AccessLogMode::None;
+ u64 program_id = 0;
+ std::shared_ptr<SaveDataController> save_data_controller;
+ std::shared_ptr<RomFsController> romfs_controller;
};
} // namespace Service::FileSystem