diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-03 03:39:19 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-03 03:40:14 +0200 |
commit | b840dd9af858a1aa1c058c0c887ac8012d748d8e (patch) | |
tree | e4395e6ac39a5789f56959eaf8249e12fb26b8a0 /src/core | |
parent | fspsrv: Implement DisableAutoSaveDataCreation (#6355) (diff) | |
download | yuzu-b840dd9af858a1aa1c058c0c887ac8012d748d8e.tar yuzu-b840dd9af858a1aa1c058c0c887ac8012d748d8e.tar.gz yuzu-b840dd9af858a1aa1c058c0c887ac8012d748d8e.tar.bz2 yuzu-b840dd9af858a1aa1c058c0c887ac8012d748d8e.tar.lz yuzu-b840dd9af858a1aa1c058c0c887ac8012d748d8e.tar.xz yuzu-b840dd9af858a1aa1c058c0c887ac8012d748d8e.tar.zst yuzu-b840dd9af858a1aa1c058c0c887ac8012d748d8e.zip |
Diffstat (limited to 'src/core')
-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) { fsc.SetAutoSaveDataCreation(false); IPC::ResponseBuilder rb{ctx, 2}; - rb.Push(RESULT_SUCCESS); + rb.Push(ResultSuccess); } void FSP_SRV::SetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) { |