summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-29 03:05:37 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-29 03:05:42 +0200
commitd40f38967e15372cf4b85c4d862ccb35b3befa40 (patch)
tree9937cfc5ef225ca02e4e1b26148b67a0be7d14d6 /src/core/hle/service/filesystem/fsp_srv.h
parentreporter: Add report class for filesystem access logs (diff)
downloadyuzu-d40f38967e15372cf4b85c4d862ccb35b3befa40.tar
yuzu-d40f38967e15372cf4b85c4d862ccb35b3befa40.tar.gz
yuzu-d40f38967e15372cf4b85c4d862ccb35b3befa40.tar.bz2
yuzu-d40f38967e15372cf4b85c4d862ccb35b3befa40.tar.lz
yuzu-d40f38967e15372cf4b85c4d862ccb35b3befa40.tar.xz
yuzu-d40f38967e15372cf4b85c4d862ccb35b3befa40.tar.zst
yuzu-d40f38967e15372cf4b85c4d862ccb35b3befa40.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 bfaeaad5d..b5486a193 100644
--- a/src/core/hle/service/filesystem/fsp_srv.h
+++ b/src/core/hle/service/filesystem/fsp_srv.h
@@ -49,10 +49,12 @@ private:
void OpenDataStorageByDataId(Kernel::HLERequestContext& ctx);
void OpenPatchDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx);
void OutputAccessLogToSdCard(Kernel::HLERequestContext& ctx);
+ void GetAccessLogVersionInfo(Kernel::HLERequestContext& ctx);
FileSys::VirtualFile romfs;
u64 current_process_id = 0;
- LogMode log_mode;
+ u32 access_log_program_index = 0;
+ LogMode log_mode = LogMode::LogToSdCard;
const Core::Reporter& reporter;
};