Skip to content
Snippets Groups Projects
Commit 1baab50e authored by Lioncash's avatar Lioncash
Browse files

ptm_sysm: Add static specifier to IsLegacyPowerOff

parent 4dbe358a
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ namespace PTM { ...@@ -16,7 +16,7 @@ namespace PTM {
* 1: Result code, 0 on success, otherwise error code * 1: Result code, 0 on success, otherwise error code
* 2: Whether the system is going through a power off * 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(); u32* cmd_buff = Kernel::GetCommandBuffer();
cmd_buff[1] = RESULT_SUCCESS.raw; cmd_buff[1] = RESULT_SUCCESS.raw;
cmd_buff[2] = 0; cmd_buff[2] = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment