mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	audio_core/cubeb: silent signed/unsigned comparison warning
This commit is contained in:
		
							parent
							
								
									e689847b11
								
							
						
					
					
						commit
						3dbd1fd4a8
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -119,7 +119,7 @@ long CubebInput::Impl::DataCallback(cubeb_stream* stream, void* user_data, const | |||
|     samples.reserve(num_frames * impl->sample_size_in_bytes); | ||||
|     if (impl->sample_size_in_bytes == 1) { | ||||
|         // If the sample format is 8bit, then resample back to 8bit before passing back to core
 | ||||
|         for (std::size_t i; i < num_frames; i++) { | ||||
|         for (std::size_t i = 0; i < static_cast<std::size_t>(num_frames); i++) { | ||||
|             s16 data; | ||||
|             std::memcpy(&data, static_cast<const u8*>(input_buffer) + i * 2, 2); | ||||
|             samples.push_back(resample_s16_s8(data)); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue