summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2015-04-24 18:23:14 -0400
committerGravatar Lioncash2015-04-24 18:23:20 -0400
commit1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5 (patch)
tree1a41e21cb59531f5d5b526b30296f7a1ab5dd2bf /src
parentMerge pull request #706 from lioncash/unused (diff)
downloadyuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar.gz
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar.xz
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.zip
ptm_sysm: Add static specifier to IsLegacyPowerOff
Diffstat (limited to '')
-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;