aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/filesystem/fsp_srv.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-28 21:05:37 -0400
committerZach Hilman <zachhilman@gmail.com>2019-06-28 21:05:42 -0400
commitd40f38967e15372cf4b85c4d862ccb35b3befa40 (patch)
tree9937cfc5ef225ca02e4e1b26148b67a0be7d14d6 /src/core/hle/service/filesystem/fsp_srv.h
parent554e2f2f983824bee174465c79b9ad3c27e8208f (diff)
fsp-srv: Implement GetAccessLogVersionInfo
Returns some misc. data about logging to help the game determine if it should log.
Diffstat (limited to 'src/core/hle/service/filesystem/fsp_srv.h')
-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;
};