mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Merge pull request #1014 from lioncash/unused-warn
core: Eliminate some unused variable warnings
This commit is contained in:
		
						commit
						a5f77c9886
					
				
					 2 changed files with 5 additions and 3 deletions
				
			
		|  | @ -36,7 +36,7 @@ void GetTitleIDList(Service::Interface* self) { | ||||||
|     cmd_buff[1] = RESULT_SUCCESS.raw; |     cmd_buff[1] = RESULT_SUCCESS.raw; | ||||||
|     cmd_buff[2] = 0; |     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) { | void GetNumContentInfos(Service::Interface* self) { | ||||||
|  |  | ||||||
|  | @ -40,7 +40,8 @@ static void Initialize(Service::Interface* self) { | ||||||
| 
 | 
 | ||||||
|     cmd_buff[1] = RESULT_SUCCESS.raw; // No error
 |     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
 |     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[] = { | const Interface::FunctionInfo FunctionTable[] = { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue