mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Attempt to fix the linux builds
This commit is contained in:
		
							parent
							
								
									de9ae14059
								
							
						
					
					
						commit
						841255cd16
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -35,7 +35,7 @@ add_library(audio_core STATIC | |||
| 
 | ||||
| create_target_directory_groups(audio_core) | ||||
| 
 | ||||
| target_link_libraries(audio_core PUBLIC common core) | ||||
| target_link_libraries(audio_core PUBLIC common) | ||||
| target_link_libraries(audio_core PRIVATE SoundTouch teakra) | ||||
| 
 | ||||
| if(ENABLE_MF) | ||||
|  |  | |||
|  | @ -12,7 +12,7 @@ std::size_t DirectRomFSReader::ReadFile(std::size_t offset, std::size_t length, | |||
|     if (length == 0) | ||||
|         return 0; // Crypto++ does not like zero size buffer
 | ||||
|     file.Seek(file_offset + offset, SEEK_SET); | ||||
|     std::size_t read_length = std::min(length, data_size - offset); | ||||
|     std::size_t read_length = std::min(length, static_cast<std::size_t>(data_size) - offset); | ||||
|     read_length = file.ReadBytes(buffer, read_length); | ||||
|     if (is_encrypted) { | ||||
|         CryptoPP::CTR_Mode<CryptoPP::AES>::Decryption d(key.data(), key.size(), ctr.data()); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue