diff --git a/src/core/hle/service/fs/fs_user.cpp b/src/core/hle/service/fs/fs_user.cpp index 3f93f4610..855378184 100644 --- a/src/core/hle/service/fs/fs_user.cpp +++ b/src/core/hle/service/fs/fs_user.cpp @@ -893,7 +893,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(true); // seems to override checking the validity so should be true + rb.Push(true); // indicates the requesting process is a gamecard, overriding the check rb.Push(0); // the secure value } @@ -931,7 +931,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(true); // seems to override checking the validity so should be true + rb.Push(true); // indicates the requesting process is a gamecard, overriding the check rb.Push(0); // the secure value }