From ca6dae1744a5eeb536bb24336cbef447ad305258 Mon Sep 17 00:00:00 2001 From: Steveice10 <1269164+Steveice10@users.noreply.github.com> Date: Sun, 19 Nov 2023 10:18:23 -0800 Subject: [PATCH] fs: Fix save data secure value stubs. (#7191) --- src/core/hle/service/fs/fs_user.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/fs/fs_user.cpp b/src/core/hle/service/fs/fs_user.cpp index 8dcdb2d77..cf9a74a04 100644 --- a/src/core/hle/service/fs/fs_user.cpp +++ b/src/core/hle/service/fs/fs_user.cpp @@ -875,7 +875,7 @@ void FS_USER::GetThisSaveDataSecureValue(Kernel::HLERequestContext& ctx) { // TODO: Implement Secure Value Lookup & Generation rb.Push(false); // indicates that the secure value doesn't exist - rb.Push(false); // looks like a boolean value, purpose unknown + rb.Push(true); // seems to override checking the validity so should be true rb.Push(0); // the secure value } @@ -913,7 +913,7 @@ void FS_USER::GetSaveDataSecureValue(Kernel::HLERequestContext& ctx) { // TODO: Implement Secure Value Lookup & Generation rb.Push(false); // indicates that the secure value doesn't exist - rb.Push(false); // looks like a boolean value, purpose unknown + rb.Push(true); // seems to override checking the validity so should be true rb.Push(0); // the secure value }