Browse Source
Merge pull request #1883 from lioncash/log-fsp
service/fsp_srv: Correct returned value in GetGlobalAccessLogMode()
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
1 deletions
-
src/core/hle/service/filesystem/fsp_srv.cpp
|
|
|
@ -796,9 +796,18 @@ void FSP_SRV::OpenSaveDataInfoReaderBySaveDataSpaceId(Kernel::HLERequestContext& |
|
|
|
void FSP_SRV::GetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) { |
|
|
|
LOG_WARNING(Service_FS, "(STUBBED) called"); |
|
|
|
|
|
|
|
enum class LogMode : u32 { |
|
|
|
Off, |
|
|
|
Log, |
|
|
|
RedirectToSdCard, |
|
|
|
LogToSdCard = Log | RedirectToSdCard, |
|
|
|
}; |
|
|
|
|
|
|
|
// Given we always want to receive logging information,
|
|
|
|
// we always specify logging as enabled.
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
rb.Push<u32>(5); |
|
|
|
rb.PushEnum(LogMode::Log); |
|
|
|
} |
|
|
|
|
|
|
|
void FSP_SRV::OpenDataStorageByCurrentProcess(Kernel::HLERequestContext& ctx) { |
|
|
|
|