diff options
author | VolcaEM <63682805+VolcaEM@users.noreply.github.com> | 2020-06-27 02:32:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 02:32:26 +0200 |
commit | ca25a3845eed214ac3bd76d37c47739dfbd56865 (patch) | |
tree | ae16f62f94880bc5f6f9a1625299ae57e989c144 /src/core/hle/service/am/spsm.cpp | |
parent | aoc: Update function table (#4170) (diff) | |
download | yuzu-ca25a3845eed214ac3bd76d37c47739dfbd56865.tar yuzu-ca25a3845eed214ac3bd76d37c47739dfbd56865.tar.gz yuzu-ca25a3845eed214ac3bd76d37c47739dfbd56865.tar.bz2 yuzu-ca25a3845eed214ac3bd76d37c47739dfbd56865.tar.lz yuzu-ca25a3845eed214ac3bd76d37c47739dfbd56865.tar.xz yuzu-ca25a3845eed214ac3bd76d37c47739dfbd56865.tar.zst yuzu-ca25a3845eed214ac3bd76d37c47739dfbd56865.zip |
Diffstat (limited to 'src/core/hle/service/am/spsm.cpp')
-rw-r--r-- | src/core/hle/service/am/spsm.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/hle/service/am/spsm.cpp b/src/core/hle/service/am/spsm.cpp index 003ee8667..f27729ce7 100644 --- a/src/core/hle/service/am/spsm.cpp +++ b/src/core/hle/service/am/spsm.cpp @@ -10,17 +10,17 @@ SPSM::SPSM() : ServiceFramework{"spsm"} { // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "GetState"}, - {1, nullptr, "SleepSystemAndWaitAwake"}, - {2, nullptr, "Unknown1"}, - {3, nullptr, "Unknown2"}, + {1, nullptr, "EnterSleep"}, + {2, nullptr, "GetLastWakeReason"}, + {3, nullptr, "Shutdown"}, {4, nullptr, "GetNotificationMessageEventHandle"}, - {5, nullptr, "Unknown3"}, - {6, nullptr, "Unknown4"}, - {7, nullptr, "Unknown5"}, + {5, nullptr, "ReceiveNotificationMessage"}, + {6, nullptr, "AnalyzeLogForLastSleepWakeSequence"}, + {7, nullptr, "ResetEventLog"}, {8, nullptr, "AnalyzePerformanceLogForLastSleepWakeSequence"}, {9, nullptr, "ChangeHomeButtonLongPressingTime"}, - {10, nullptr, "Unknown6"}, - {11, nullptr, "Unknown7"}, + {10, nullptr, "PutErrorState"}, + {11, nullptr, "InvalidateCurrentHomeButtonPressing"}, }; // clang-format on |