summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Mat M2020-04-30 13:32:53 -0400
committerGravatar GitHub2020-04-30 13:32:53 -0400
commite6f42519882c5cc1b02b490c9619b3eee6630897 (patch)
tree56fea70dd721b88c9fc20c9659cb00b7c7ca3f64
parentMerge pull request #3825 from ogniK5377/psm-no-warn (diff)
parentcaps: Add missing service names to caps:su (diff)
downloadyuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar.gz
yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.tar.xz
yuzu-e6f42519882c5cc1b02b490c9619b3eee6630897.zip
Merge pull request #3831 from ogniK5377/caps-su-names
caps: Add missing service names to caps:su
-rw-r--r--src/core/hle/service/caps/caps_su.cpp3
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 {
9CAPS_SU::CAPS_SU() : ServiceFramework("caps:su") { 9CAPS_SU::CAPS_SU() : ServiceFramework("caps:su") {
10 // clang-format off 10 // clang-format off
11 static const FunctionInfo functions[] = { 11 static const FunctionInfo functions[] = {
12 {32, nullptr, "SetShimLibraryVersion"},
12 {201, nullptr, "SaveScreenShot"}, 13 {201, nullptr, "SaveScreenShot"},
13 {203, nullptr, "SaveScreenShotEx0"}, 14 {203, nullptr, "SaveScreenShotEx0"},
15 {205, nullptr, "SaveScreenShotEx1"},
16 {210, nullptr, "SaveScreenShotEx2"},
14 }; 17 };
15 // clang-format on 18 // clang-format on
16 19