Fix FS::GetThisSaveDataSecureValue stub

Based on https://github.com/citra-emu/citra/pull/7191
This commit is contained in:
wheremyfoodat 2023-11-20 21:46:20 +02:00 committed by GitHub
parent a98fcfc56f
commit 7a78b2cf20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -670,6 +670,9 @@ void FSService::getThisSaveDataSecureValue(u32 messagePointer) {
mem.write32(messagePointer, IPC::responseHeader(0x86F, 1, 0));
mem.write32(messagePointer + 4, Result::Success);
mem.write8(messagePointer + 8, 0); // Secure value does not exist
mem.write8(messagePointer + 12, 1); // TODO: What is this?
mem.write64(messagePointer + 16, 0); // Secure value
}
void FSService::setThisSaveDataSecureValue(u32 messagePointer) {
@ -760,4 +763,4 @@ void FSService::renameFile(u32 messagePointer) {
// Everything is OK, let's do the rename. Both archives should match so we don't need the dest anymore
const HorizonResult res = sourceArchive->archive->renameFile(sourcePath, destPath);
mem.write32(messagePointer + 4, static_cast<u32>(res));
}
}