diff options
author | Mat M <mathew1800@gmail.com> | 2020-04-30 19:32:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 19:32:53 +0200 |
commit | e6f42519882c5cc1b02b490c9619b3eee6630897 (patch) | |
tree | 56fea70dd721b88c9fc20c9659cb00b7c7ca3f64 /src/core/hle | |
parent | Merge pull request #3825 from ogniK5377/psm-no-warn (diff) | |
parent | caps: Add missing service names to caps:su (diff) | |
download | yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar.gz yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar.bz2 yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar.lz yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar.xz yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar.zst yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/caps/caps_su.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/caps/caps_su.cpp b/src/core/hle/service/caps/caps_su.cpp index 2b4c2d808..b4d9355ef 100644 --- a/src/core/hle/service/caps/caps_su.cpp +++ b/src/core/hle/service/caps/caps_su.cpp @@ -9,8 +9,11 @@ namespace Service::Capture { CAPS_SU::CAPS_SU() : ServiceFramework("caps:su") { // clang-format off static const FunctionInfo functions[] = { + {32, nullptr, "SetShimLibraryVersion"}, {201, nullptr, "SaveScreenShot"}, {203, nullptr, "SaveScreenShotEx0"}, + {205, nullptr, "SaveScreenShotEx1"}, + {210, nullptr, "SaveScreenShotEx2"}, }; // clang-format on |