mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 02:34:11 +01:00 
			
		
		
		
	audio_core: fix -Wuninitialized when compiling with ASan
This commit is contained in:
		
							parent
							
								
									250c3d555e
								
							
						
					
					
						commit
						73a87edc45
					
				| @ -419,13 +419,13 @@ protected: | ||||
|     /// Workbuffers assigned to this effect
 | ||||
|     std::array<AddressInfo, 2> workbuffers{AddressInfo(CpuAddr(0), 0), AddressInfo(CpuAddr(0), 0)}; | ||||
|     /// Aux/Capture buffer info for reading
 | ||||
|     CpuAddr send_buffer_info; | ||||
|     CpuAddr send_buffer_info{}; | ||||
|     /// Aux/Capture buffer for reading
 | ||||
|     CpuAddr send_buffer; | ||||
|     CpuAddr send_buffer{}; | ||||
|     /// Aux/Capture buffer info for writing
 | ||||
|     CpuAddr return_buffer_info; | ||||
|     CpuAddr return_buffer_info{}; | ||||
|     /// Aux/Capture buffer for writing
 | ||||
|     CpuAddr return_buffer; | ||||
|     CpuAddr return_buffer{}; | ||||
|     /// Parameters of this effect
 | ||||
|     std::array<u8, sizeof(InParameterVersion2)> parameter{}; | ||||
|     /// State of this effect used by the AudioRenderer across calls
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user