summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-04-25 00:23:14 +0200
committerLioncash <mathew1800@gmail.com>2015-04-25 00:23:20 +0200
commit1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5 (patch)
tree1a41e21cb59531f5d5b526b30296f7a1ab5dd2bf /src
parentMerge pull request #706 from lioncash/unused (diff)
downloadyuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar.gz
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar.bz2
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar.lz
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar.xz
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.tar.zst
yuzu-1baab50e7c511f9b403c15e2da0ef75ec3bd7ae5.zip
Diffstat (limited to 'src')
-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 {
* 1: Result code, 0 on success, otherwise error code
* 2: Whether the system is going through a power off
*/
-void IsLegacyPowerOff(Service::Interface* self) {
+static void IsLegacyPowerOff(Service::Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
cmd_buff[1] = RESULT_SUCCESS.raw;
cmd_buff[2] = 0;