diff options
author | zkitx <zkitx@zkitx.jp> | 2021-03-11 08:46:22 +0100 |
---|---|---|
committer | zkitx <zkitx@zkitx.jp> | 2021-03-11 08:46:22 +0100 |
commit | 4439801c0fa0939c0622d9a1a75a0b3460945adc (patch) | |
tree | 14e6c711b1e46ec4931de40ee458b384f1a4f505 | |
parent | Update SPL to fit N's service refactor (4.0.0+) which split into new services. (diff) | |
download | yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.gz yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.bz2 yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.lz yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.xz yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.zst yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.zip |
-rw-r--r-- | src/core/hle/service/spl/spl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/spl/spl.cpp b/src/core/hle/service/spl/spl.cpp index e18690554..4e212610f 100644 --- a/src/core/hle/service/spl/spl.cpp +++ b/src/core/hle/service/spl/spl.cpp @@ -39,7 +39,7 @@ SPL_MIG::SPL_MIG(Core::System& system_, std::shared_ptr<Module> module_) {15, nullptr, "CryptAesCtr"}, {16, nullptr, "ComputeCmac"}, {21, nullptr, "AllocateAesKeyslot"}, - {22, nullptr, "DeallocateAesKeyslot"}, + {22, nullptr, "DeallocateAesKeySlot"}, {23, nullptr, "GetAesKeyslotAvailableEvent"}, {24, nullptr, "SetBootReason"}, {25, nullptr, "GetBootReason"}, @@ -67,7 +67,7 @@ SPL_FS::SPL_FS(Core::System& system_, std::shared_ptr<Module> module_) {16, nullptr, "ComputeCmac"}, {19, nullptr, "LoadTitleKey"}, {21, nullptr, "AllocateAesKeyslot"}, - {22, nullptr, "DeallocateAesKeyslot"}, + {22, nullptr, "DeallocateAesKeySlot"}, {23, nullptr, "GetAesKeyslotAvailableEvent"}, {24, nullptr, "SetBootReason"}, {25, nullptr, "GetBootReason"}, @@ -126,7 +126,7 @@ SPL_ES::SPL_ES(Core::System& system_, std::shared_ptr<Module> module_) {18, nullptr, "UnwrapTitleKey"}, {20, nullptr, "PrepareEsCommonKey"}, {21, nullptr, "AllocateAesKeyslot"}, - {22, nullptr, "DeallocateAesKeyslot"}, + {22, nullptr, "DeallocateAesKeySlot"}, {23, nullptr, "GetAesKeyslotAvailableEvent"}, {24, nullptr, "SetBootReason"}, {25, nullptr, "GetBootReason"}, |