fs: Fix save data secure value stubs. (#7191)

This commit is contained in:
Steveice10 2023-11-19 10:18:23 -08:00 committed by GitHub
parent b6acebcb11
commit ca6dae1744
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -875,7 +875,7 @@ void FS_USER::GetThisSaveDataSecureValue(Kernel::HLERequestContext& ctx) {
// TODO: Implement Secure Value Lookup & Generation
rb.Push<bool>(false); // indicates that the secure value doesn't exist
rb.Push<bool>(false); // looks like a boolean value, purpose unknown
rb.Push<bool>(true); // seems to override checking the validity so should be true
rb.Push<u64>(0); // the secure value
}
@ -913,7 +913,7 @@ void FS_USER::GetSaveDataSecureValue(Kernel::HLERequestContext& ctx) {
// TODO: Implement Secure Value Lookup & Generation
rb.Push<bool>(false); // indicates that the secure value doesn't exist
rb.Push<bool>(false); // looks like a boolean value, purpose unknown
rb.Push<bool>(true); // seems to override checking the validity so should be true
rb.Push<u64>(0); // the secure value
}