diff options
| author | 2021-03-11 02:46:22 -0500 | |
|---|---|---|
| committer | 2021-03-11 02:46:22 -0500 | |
| commit | 4439801c0fa0939c0622d9a1a75a0b3460945adc (patch) | |
| tree | 14e6c711b1e46ec4931de40ee458b384f1a4f505 /src | |
| parent | Update SPL to fit N's service refactor (4.0.0+) which split into new services. (diff) | |
| download | yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.gz yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.tar.xz yuzu-4439801c0fa0939c0622d9a1a75a0b3460945adc.zip | |
Fix casing on DeallocateAesKeySlot
Diffstat (limited to 'src')
| -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_) | |||
| 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"}, |