mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Merge pull request #1014 from lioncash/unused-warn
core: Eliminate some unused variable warnings
This commit is contained in:
		
						commit
						a5f77c9886
					
				@ -36,7 +36,7 @@ void GetTitleIDList(Service::Interface* self) {
 | 
			
		||||
    cmd_buff[1] = RESULT_SUCCESS.raw;
 | 
			
		||||
    cmd_buff[2] = 0;
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_AM, "(STUBBED) Requested %u titles from media type %u", num_titles, media_type);
 | 
			
		||||
    LOG_WARNING(Service_AM, "(STUBBED) Requested %u titles from media type %u. Address=0x%08X", num_titles, media_type, addr);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void GetNumContentInfos(Service::Interface* self) {
 | 
			
		||||
 | 
			
		||||
@ -40,7 +40,8 @@ static void Initialize(Service::Interface* self) {
 | 
			
		||||
 | 
			
		||||
    cmd_buff[1] = RESULT_SUCCESS.raw; // No error
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_LDR, "(STUBBED) called");
 | 
			
		||||
    LOG_WARNING(Service_LDR, "(STUBBED) called. crs_buffer_ptr=0x%08X, crs_size=0x%08X, address=0x%08X, value=0x%08X, process=0x%08X",
 | 
			
		||||
                crs_buffer_ptr, crs_size, address, value, process);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
@ -69,7 +70,8 @@ static void LoadCRR(Service::Interface* self) {
 | 
			
		||||
 | 
			
		||||
    cmd_buff[1] = RESULT_SUCCESS.raw; // No error
 | 
			
		||||
 | 
			
		||||
    LOG_WARNING(Service_LDR, "(STUBBED) called");
 | 
			
		||||
    LOG_WARNING(Service_LDR, "(STUBBED) called. crs_buffer_ptr=0x%08X, crs_size=0x%08X, value=0x%08X, process=0x%08X",
 | 
			
		||||
                crs_buffer_ptr, crs_size, value, process);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const Interface::FunctionInfo FunctionTable[] = {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user