mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-03 23:28:48 +00:00 
			
		
		
		
	service/ptm: Migrate logging macros
This commit is contained in:
		
							parent
							
								
									4c67f1c7c6
								
							
						
					
					
						commit
						db256c69a4
					
				
					 1 changed files with 13 additions and 11 deletions
				
			
		| 
						 | 
				
			
			@ -31,7 +31,7 @@ void Module::Interface::GetAdapterState(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push(ptm->battery_is_charging);
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Module::Interface::GetShellState(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
| 
						 | 
				
			
			@ -49,7 +49,7 @@ void Module::Interface::GetBatteryLevel(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push(static_cast<u32>(ChargeLevels::CompletelyFull)); // Set to a completely full battery
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Module::Interface::GetBatteryChargeState(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
| 
						 | 
				
			
			@ -59,7 +59,7 @@ void Module::Interface::GetBatteryChargeState(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push(ptm->battery_is_charging);
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Module::Interface::GetPedometerState(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
| 
						 | 
				
			
			@ -69,7 +69,7 @@ void Module::Interface::GetPedometerState(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push(ptm->pedometer_is_counting);
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Module::Interface::GetStepHistory(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
| 
						 | 
				
			
			@ -92,8 +92,8 @@ void Module::Interface::GetStepHistory(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.PushMappedBuffer(buffer);
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called, from time(raw): 0x%" PRIx64 ", for %u hours",
 | 
			
		||||
                start_time, hours);
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called, from time(raw): 0x{:x}, for {} hours", start_time,
 | 
			
		||||
                  hours);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Module::Interface::GetTotalStepCount(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
| 
						 | 
				
			
			@ -103,7 +103,7 @@ void Module::Interface::GetTotalStepCount(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push<u32>(0);
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Module::Interface::GetSoftwareClosedFlag(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
| 
						 | 
				
			
			@ -113,21 +113,23 @@ void Module::Interface::GetSoftwareClosedFlag(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push(false);
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void CheckNew3DS(IPC::RequestBuilder& rb) {
 | 
			
		||||
    const bool is_new_3ds = Settings::values.is_new_3ds;
 | 
			
		||||
 | 
			
		||||
    if (is_new_3ds) {
 | 
			
		||||
        LOG_CRITICAL(Service_PTM, "The option 'is_new_3ds' is enabled as part of the 'System' "
 | 
			
		||||
                                  "settings. Citra does not fully support New 3DS emulation yet!");
 | 
			
		||||
        NGLOG_CRITICAL(Service_PTM,
 | 
			
		||||
                       "The option 'is_new_3ds' is enabled as part of the 'System' "
 | 
			
		||||
                       "settings. Citra does not fully support New 3DS emulation yet!");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push(is_new_3ds);
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_PTM, "(STUBBED) called isNew3DS = 0x%08x", static_cast<u32>(is_new_3ds));
 | 
			
		||||
    NGLOG_WARNING(Service_PTM, "(STUBBED) called isNew3DS = 0x{:08x}",
 | 
			
		||||
                  static_cast<u32>(is_new_3ds));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Module::Interface::CheckNew3DS(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue