diff options
| author | 2021-06-02 19:20:24 -0700 | |
|---|---|---|
| committer | 2021-06-02 19:20:24 -0700 | |
| commit | 395cc0c32f5ce15cc324c1e392b7bb7eff24d30e (patch) | |
| tree | e4395e6ac39a5789f56959eaf8249e12fb26b8a0 /src | |
| parent | fspsrv: Implement DisableAutoSaveDataCreation (#6355) (diff) | |
| parent | fsp-srv: Replace one last instance of RESULT_SUCCESS (diff) | |
| download | yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar.gz yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar.xz yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.zip | |
Merge pull request #6405 from Morph1984/result-success
fsp-srv: Replace one last instance of RESULT_SUCCESS
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index 52dc73cf8..3af9881c2 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp | |||
| @@ -1036,7 +1036,7 @@ void FSP_SRV::DisableAutoSaveDataCreation(Kernel::HLERequestContext& ctx) { | |||
| 1036 | fsc.SetAutoSaveDataCreation(false); | 1036 | fsc.SetAutoSaveDataCreation(false); |
| 1037 | 1037 | ||
| 1038 | IPC::ResponseBuilder rb{ctx, 2}; | 1038 | IPC::ResponseBuilder rb{ctx, 2}; |
| 1039 | rb.Push(RESULT_SUCCESS); | 1039 | rb.Push(ResultSuccess); |
| 1040 | } | 1040 | } |
| 1041 | 1041 | ||
| 1042 | void FSP_SRV::SetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) { | 1042 | void FSP_SRV::SetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) { |