diff options
| author | 2019-01-29 21:16:22 -0500 | |
|---|---|---|
| committer | 2019-01-29 21:16:24 -0500 | |
| commit | 49a3571e767fd281429882d5d4a8da212f368411 (patch) | |
| tree | 0ee3d4dedab2a2796ab4a4947d18ceff2a219486 | |
| parent | hle/ipc_helpers: Fix clang-format warnings (diff) | |
| download | yuzu-49a3571e767fd281429882d5d4a8da212f368411.tar.gz yuzu-49a3571e767fd281429882d5d4a8da212f368411.tar.xz yuzu-49a3571e767fd281429882d5d4a8da212f368411.zip | |
service/psc: Update function tables
Updates the function tables based off information on SwitchBrew. Gets
rid of a swath of unknown names.
| -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: | |||
| 17 | explicit PSC_C() : ServiceFramework{"psc:c"} { | 17 | explicit PSC_C() : ServiceFramework{"psc:c"} { |
| 18 | // clang-format off | 18 | // clang-format off |
| 19 | static const FunctionInfo functions[] = { | 19 | static const FunctionInfo functions[] = { |
| 20 | {0, nullptr, "Unknown1"}, | 20 | {0, nullptr, "Initialize"}, |
| 21 | {1, nullptr, "Unknown2"}, | 21 | {1, nullptr, "DispatchRequest"}, |
| 22 | {2, nullptr, "Unknown3"}, | 22 | {2, nullptr, "GetResult"}, |
| 23 | {3, nullptr, "Unknown4"}, | 23 | {3, nullptr, "GetState"}, |
| 24 | {4, nullptr, "Unknown5"}, | 24 | {4, nullptr, "Cancel"}, |
| 25 | {5, nullptr, "Unknown6"}, | 25 | {5, nullptr, "PrintModuleInformation"}, |
| 26 | {6, nullptr, "Unknown7"}, | 26 | {6, nullptr, "GetModuleInformation"}, |
| 27 | }; | 27 | }; |
| 28 | // clang-format on | 28 | // clang-format on |
| 29 | 29 | ||
| @@ -39,7 +39,8 @@ public: | |||
| 39 | {0, nullptr, "Initialize"}, | 39 | {0, nullptr, "Initialize"}, |
| 40 | {1, nullptr, "GetRequest"}, | 40 | {1, nullptr, "GetRequest"}, |
| 41 | {2, nullptr, "Acknowledge"}, | 41 | {2, nullptr, "Acknowledge"}, |
| 42 | {3, nullptr, "Unknown1"}, | 42 | {3, nullptr, "Finalize"}, |
| 43 | {4, nullptr, "AcknowledgeEx"}, | ||
| 43 | }; | 44 | }; |
| 44 | // clang-format on | 45 | // clang-format on |
| 45 | 46 | ||