diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-01-29 21:16:22 -0500 | 
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-01-29 21:16:24 -0500 | 
| commit | 49a3571e767fd281429882d5d4a8da212f368411 (patch) | |
| tree | 0ee3d4dedab2a2796ab4a4947d18ceff2a219486 /src/core | |
| parent | 2561a79c394e66835d6ce24c0e57a22389bac282 (diff) | |
service/psc: Update function tables
Updates the function tables based off information on SwitchBrew. Gets
rid of a swath of unknown names.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/psc/psc.cpp | 17 | 
1 files changed, 9 insertions, 8 deletions
| diff --git a/src/core/hle/service/psc/psc.cpp b/src/core/hle/service/psc/psc.cpp index 0ba0a4076..53ec6b031 100644 --- a/src/core/hle/service/psc/psc.cpp +++ b/src/core/hle/service/psc/psc.cpp @@ -17,13 +17,13 @@ public:      explicit PSC_C() : ServiceFramework{"psc:c"} {          // clang-format off          static const FunctionInfo functions[] = { -            {0, nullptr, "Unknown1"}, -            {1, nullptr, "Unknown2"}, -            {2, nullptr, "Unknown3"}, -            {3, nullptr, "Unknown4"}, -            {4, nullptr, "Unknown5"}, -            {5, nullptr, "Unknown6"}, -            {6, nullptr, "Unknown7"}, +            {0, nullptr, "Initialize"}, +            {1, nullptr, "DispatchRequest"}, +            {2, nullptr, "GetResult"}, +            {3, nullptr, "GetState"}, +            {4, nullptr, "Cancel"}, +            {5, nullptr, "PrintModuleInformation"}, +            {6, nullptr, "GetModuleInformation"},          };          // clang-format on @@ -39,7 +39,8 @@ public:              {0, nullptr, "Initialize"},              {1, nullptr, "GetRequest"},              {2, nullptr, "Acknowledge"}, -            {3, nullptr, "Unknown1"}, +            {3, nullptr, "Finalize"}, +            {4, nullptr, "AcknowledgeEx"},          };          // clang-format on | 
