summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-06-03 04:20:24 +0200
committerGitHub <noreply@github.com>2021-06-03 04:20:24 +0200
commit395cc0c32f5ce15cc324c1e392b7bb7eff24d30e (patch)
treee4395e6ac39a5789f56959eaf8249e12fb26b8a0
parentfspsrv: Implement DisableAutoSaveDataCreation (#6355) (diff)
parentfsp-srv: Replace one last instance of RESULT_SUCCESS (diff)
downloadyuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar
yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar.gz
yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar.bz2
yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar.lz
yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar.xz
yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.tar.zst
yuzu-395cc0c32f5ce15cc324c1e392b7bb7eff24d30e.zip
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp2
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) {
fsc.SetAutoSaveDataCreation(false);
IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(RESULT_SUCCESS);
+ rb.Push(ResultSuccess);
}
void FSP_SRV::SetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) {