diff options
author | VolcaEM <63682805+VolcaEM@users.noreply.github.com> | 2020-06-29 04:09:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 04:09:38 +0200 |
commit | f2eead3b5b6a91a153af126874435ca0e791ef08 (patch) | |
tree | 31d15bb1087e9a0e9eda3c6dbd51fd3c348da270 /src | |
parent | service: Update function tables (diff) | |
download | yuzu-f2eead3b5b6a91a153af126874435ca0e791ef08.tar yuzu-f2eead3b5b6a91a153af126874435ca0e791ef08.tar.gz yuzu-f2eead3b5b6a91a153af126874435ca0e791ef08.tar.bz2 yuzu-f2eead3b5b6a91a153af126874435ca0e791ef08.tar.lz yuzu-f2eead3b5b6a91a153af126874435ca0e791ef08.tar.xz yuzu-f2eead3b5b6a91a153af126874435ca0e791ef08.tar.zst yuzu-f2eead3b5b6a91a153af126874435ca0e791ef08.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/spl/spl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/spl/spl.cpp b/src/core/hle/service/spl/spl.cpp index 6caab8929..773551464 100644 --- a/src/core/hle/service/spl/spl.cpp +++ b/src/core/hle/service/spl/spl.cpp @@ -38,7 +38,7 @@ SPL::SPL(std::shared_ptr<Module> module) : Module::Interface(std::move(module), {29, nullptr, "ModularExponentiateWithDrmDeviceCertKey"}, {30, nullptr, "ReencryptDeviceUniqueData "}, {31, nullptr, "PrepareEsArchiveKey"}, // This is also GetPackage2Hash? - {32, nullptr, "LoadPreparedAesKey"} + {32, nullptr, "LoadPreparedAesKey"}, }; RegisterHandlers(functions); } |