diff options
| author | 2020-07-31 11:02:59 -0400 | |
|---|---|---|
| committer | 2020-07-31 11:02:59 -0400 | |
| commit | fc86cb4ca27e38d4ffd02a13337100d987d25304 (patch) | |
| tree | 71d82db2f8d30d2e9800ed857a42a64e8dee5454 /src | |
| parent | fsp-srv: Stub Read/WriteSaveDataFileSystemExtraDataWithMaskBySaveDataAttribute (diff) | |
| download | yuzu-fc86cb4ca27e38d4ffd02a13337100d987d25304.tar.gz yuzu-fc86cb4ca27e38d4ffd02a13337100d987d25304.tar.xz yuzu-fc86cb4ca27e38d4ffd02a13337100d987d25304.zip | |
minor nits
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index 87b4bcb0a..26fd87f58 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp | |||
| @@ -884,6 +884,7 @@ void FSP_SRV::OpenSaveDataInfoReaderBySaveDataSpaceId(Kernel::HLERequestContext& | |||
| 884 | 884 | ||
| 885 | void FSP_SRV::WriteSaveDataFileSystemExtraDataBySaveDataAttribute(Kernel::HLERequestContext& ctx) { | 885 | void FSP_SRV::WriteSaveDataFileSystemExtraDataBySaveDataAttribute(Kernel::HLERequestContext& ctx) { |
| 886 | LOG_WARNING(Service_FS, "(STUBBED) called."); | 886 | LOG_WARNING(Service_FS, "(STUBBED) called."); |
| 887 | |||
| 887 | IPC::ResponseBuilder rb{ctx, 2}; | 888 | IPC::ResponseBuilder rb{ctx, 2}; |
| 888 | rb.Push(RESULT_SUCCESS); | 889 | rb.Push(RESULT_SUCCESS); |
| 889 | } | 890 | } |
| @@ -901,8 +902,9 @@ void FSP_SRV::ReadSaveDataFileSystemExtraDataWithMaskBySaveDataAttribute( | |||
| 901 | // Stub this to None for now, backend needs an impl to read/write the SaveDataExtraData | 902 | // Stub this to None for now, backend needs an impl to read/write the SaveDataExtraData |
| 902 | constexpr auto flags = static_cast<u32>(FileSys::SaveDataFlags::None); | 903 | constexpr auto flags = static_cast<u32>(FileSys::SaveDataFlags::None); |
| 903 | 904 | ||
| 904 | IPC::ResponseBuilder rb{ctx, 3}; | ||
| 905 | LOG_WARNING(Service_FS, "(STUBBED) called, flags={}", flags); | 905 | LOG_WARNING(Service_FS, "(STUBBED) called, flags={}", flags); |
| 906 | |||
| 907 | IPC::ResponseBuilder rb{ctx, 3}; | ||
| 906 | rb.Push(RESULT_SUCCESS); | 908 | rb.Push(RESULT_SUCCESS); |
| 907 | rb.Push(flags); | 909 | rb.Push(flags); |
| 908 | } | 910 | } |