summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar zkitx2021-03-11 02:46:22 -0500
committerGravatar zkitx2021-03-11 02:46:22 -0500
commit4439801c0fa0939c0622d9a1a75a0b3460945adc (patch)
tree14e6c711b1e46ec4931de40ee458b384f1a4f505 /src/core
parentUpdate SPL to fit N's service refactor (4.0.0+) which split into new services. (diff)
downloadyuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.gz
yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.xz
yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.zip
Fix casing on DeallocateAesKeySlot
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/spl/spl.cpp6
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_)
39 {15, nullptr, "CryptAesCtr"}, 39 {15, nullptr, "CryptAesCtr"},
40 {16, nullptr, "ComputeCmac"}, 40 {16, nullptr, "ComputeCmac"},
41 {21, nullptr, "AllocateAesKeyslot"}, 41 {21, nullptr, "AllocateAesKeyslot"},
42 {22, nullptr, "DeallocateAesKeyslot"}, 42 {22, nullptr, "DeallocateAesKeySlot"},
43 {23, nullptr, "GetAesKeyslotAvailableEvent"}, 43 {23, nullptr, "GetAesKeyslotAvailableEvent"},
44 {24, nullptr, "SetBootReason"}, 44 {24, nullptr, "SetBootReason"},
45 {25, nullptr, "GetBootReason"}, 45 {25, nullptr, "GetBootReason"},
@@ -67,7 +67,7 @@ SPL_FS::SPL_FS(Core::System& system_, std::shared_ptr<Module> module_)
67 {16, nullptr, "ComputeCmac"}, 67 {16, nullptr, "ComputeCmac"},
68 {19, nullptr, "LoadTitleKey"}, 68 {19, nullptr, "LoadTitleKey"},
69 {21, nullptr, "AllocateAesKeyslot"}, 69 {21, nullptr, "AllocateAesKeyslot"},
70 {22, nullptr, "DeallocateAesKeyslot"}, 70 {22, nullptr, "DeallocateAesKeySlot"},
71 {23, nullptr, "GetAesKeyslotAvailableEvent"}, 71 {23, nullptr, "GetAesKeyslotAvailableEvent"},
72 {24, nullptr, "SetBootReason"}, 72 {24, nullptr, "SetBootReason"},
73 {25, nullptr, "GetBootReason"}, 73 {25, nullptr, "GetBootReason"},
@@ -126,7 +126,7 @@ SPL_ES::SPL_ES(Core::System& system_, std::shared_ptr<Module> module_)
126 {18, nullptr, "UnwrapTitleKey"}, 126 {18, nullptr, "UnwrapTitleKey"},
127 {20, nullptr, "PrepareEsCommonKey"}, 127 {20, nullptr, "PrepareEsCommonKey"},
128 {21, nullptr, "AllocateAesKeyslot"}, 128 {21, nullptr, "AllocateAesKeyslot"},
129 {22, nullptr, "DeallocateAesKeyslot"}, 129 {22, nullptr, "DeallocateAesKeySlot"},
130 {23, nullptr, "GetAesKeyslotAvailableEvent"}, 130 {23, nullptr, "GetAesKeyslotAvailableEvent"},
131 {24, nullptr, "SetBootReason"}, 131 {24, nullptr, "SetBootReason"},
132 {25, nullptr, "GetBootReason"}, 132 {25, nullptr, "GetBootReason"},