summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/apt/apt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/apt/apt.cpp b/src/core/hle/service/apt/apt.cpp
index e57b19c2d..1517d3a2f 100644
--- a/src/core/hle/service/apt/apt.cpp
+++ b/src/core/hle/service/apt/apt.cpp
@@ -554,7 +554,7 @@ void Unwrap(Service::Interface* self) {
554 // Decrypts the ciphertext using AES-CCM 554 // Decrypts the ciphertext using AES-CCM
555 auto pdata = HW::AES::DecryptVerifyCCM(cipher, nonce, HW::AES::KeySlotID::APTWrap); 555 auto pdata = HW::AES::DecryptVerifyCCM(cipher, nonce, HW::AES::KeySlotID::APTWrap);
556 556
557 IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); 557 IPC::RequestBuilder rb = rp.MakeBuilder(1, 4);
558 if (!pdata.empty()) { 558 if (!pdata.empty()) {
559 // Splits the plaintext and put the nonce in between 559 // Splits the plaintext and put the nonce in between
560 Memory::WriteBlock(output, pdata.data(), nonce_offset); 560 Memory::WriteBlock(output, pdata.data(), nonce_offset);