summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar archshift2015-04-24 15:25:18 -0700
committerGravatar archshift2015-04-24 15:25:18 -0700
commitd8b22d8b87ee0398d9414c13f520e234fc59f48b (patch)
tree1a41e21cb59531f5d5b526b30296f7a1ab5dd2bf
parentMerge pull request #706 from lioncash/unused (diff)
parentptm_sysm: Add static specifier to IsLegacyPowerOff (diff)
downloadyuzu-d8b22d8b87ee0398d9414c13f520e234fc59f48b.tar.gz
yuzu-d8b22d8b87ee0398d9414c13f520e234fc59f48b.tar.xz
yuzu-d8b22d8b87ee0398d9414c13f520e234fc59f48b.zip
Merge pull request #710 from lioncash/static
ptm_sysm: Add static specifier to IsLegacyPowerOff
-rw-r--r--src/core/hle/service/ptm/ptm_sysm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm/ptm_sysm.cpp b/src/core/hle/service/ptm/ptm_sysm.cpp
index 2d841f69c..13322bdbb 100644
--- a/src/core/hle/service/ptm/ptm_sysm.cpp
+++ b/src/core/hle/service/ptm/ptm_sysm.cpp
@@ -16,7 +16,7 @@ namespace PTM {
16 * 1: Result code, 0 on success, otherwise error code 16 * 1: Result code, 0 on success, otherwise error code
17 * 2: Whether the system is going through a power off 17 * 2: Whether the system is going through a power off
18 */ 18 */
19void IsLegacyPowerOff(Service::Interface* self) { 19static void IsLegacyPowerOff(Service::Interface* self) {
20 u32* cmd_buff = Kernel::GetCommandBuffer(); 20 u32* cmd_buff = Kernel::GetCommandBuffer();
21 cmd_buff[1] = RESULT_SUCCESS.raw; 21 cmd_buff[1] = RESULT_SUCCESS.raw;
22 cmd_buff[2] = 0; 22 cmd_buff[2] = 0;