mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Services/PTM: Stubbed PTM_Sysm::IsLegacyPowerOff.
This allows the Home Menu to boot further
This commit is contained in:
		
							parent
							
								
									c9ef377afa
								
							
						
					
					
						commit
						c36778e602
					
				
					 1 changed files with 13 additions and 1 deletions
				
			
		|  | @ -12,6 +12,18 @@ | ||||||
| 
 | 
 | ||||||
| namespace PTM_SYSM { | namespace PTM_SYSM { | ||||||
| 
 | 
 | ||||||
|  | /**
 | ||||||
|  |  * Returns whether the system is powering off (?) | ||||||
|  |  *   Outputs: | ||||||
|  |  *     1: Result code, 0 on success, otherwise error code | ||||||
|  |  *     2: Whether the system is going through a power off | ||||||
|  |  */ | ||||||
|  | void IsLegacyPowerOff(Service::Interface* self) { | ||||||
|  |     u32* cmd_buff = Kernel::GetCommandBuffer(); | ||||||
|  |     cmd_buff[1] = RESULT_SUCCESS.raw; | ||||||
|  |     cmd_buff[2] = 0; | ||||||
|  | } | ||||||
|  | 
 | ||||||
| const Interface::FunctionInfo FunctionTable[] = { | const Interface::FunctionInfo FunctionTable[] = { | ||||||
|     {0x040100C0, nullptr, "SetRtcAlarmEx"}, |     {0x040100C0, nullptr, "SetRtcAlarmEx"}, | ||||||
|     {0x04020042, nullptr, "ReplySleepQuery"}, |     {0x04020042, nullptr, "ReplySleepQuery"}, | ||||||
|  | @ -37,7 +49,7 @@ const Interface::FunctionInfo FunctionTable[] = { | ||||||
|     {0x080C0080, nullptr, "SetUserTime"}, |     {0x080C0080, nullptr, "SetUserTime"}, | ||||||
|     {0x080D0000, nullptr, "InvalidateSystemTime"}, |     {0x080D0000, nullptr, "InvalidateSystemTime"}, | ||||||
|     {0x080E0140, nullptr, "NotifyPlayEvent"}, |     {0x080E0140, nullptr, "NotifyPlayEvent"}, | ||||||
|     {0x080F0000, nullptr, "IsLegacyPowerOff"}, |     {0x080F0000, IsLegacyPowerOff, "IsLegacyPowerOff"}, | ||||||
|     {0x08100000, nullptr, "ClearLegacyPowerOff"}, |     {0x08100000, nullptr, "ClearLegacyPowerOff"}, | ||||||
|     {0x08110000, nullptr, "GetShellStatus"}, |     {0x08110000, nullptr, "GetShellStatus"}, | ||||||
|     {0x08120000, nullptr, "IsShutdownByBatteryEmpty"}, |     {0x08120000, nullptr, "IsShutdownByBatteryEmpty"}, | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue