mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	audio_core/hle: Fix compile issues (#7024)
* audio_core/hle: Fix compile issues Fix all compiling issues related with fmt (see #7015) * audio_core/hle: Fix clang-format
This commit is contained in:
		
							parent
							
								
									50f22d1f59
								
							
						
					
					
						commit
						376d33cff4
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		|  | @ -231,7 +231,8 @@ void Source::ParseConfig(SourceConfiguration::Configuration& config, | |||
|             } | ||||
|         } | ||||
|         LOG_TRACE(Audio_DSP, "partially updating embedded buffer addr={:#010x} len={} id={}", | ||||
|                   state.current_buffer_physical_address, config.length, config.buffer_id); | ||||
|                   state.current_buffer_physical_address, static_cast<u32>(config.length), | ||||
|                   config.buffer_id); | ||||
|     } | ||||
| 
 | ||||
|     if (config.embedded_buffer_dirty) { | ||||
|  | @ -266,8 +267,8 @@ void Source::ParseConfig(SourceConfiguration::Configuration& config, | |||
|             }); | ||||
|         } | ||||
|         LOG_TRACE(Audio_DSP, "enqueuing embedded addr={:#010x} len={} id={} start={}", | ||||
|                   config.physical_address, config.length, config.buffer_id, | ||||
|                   static_cast<u32>(config.play_position)); | ||||
|                   static_cast<u32>(config.physical_address), static_cast<u32>(config.length), | ||||
|                   config.buffer_id, static_cast<u32>(config.play_position)); | ||||
|     } | ||||
| 
 | ||||
|     if (config.loop_related_dirty && config.loop_related != 0) { | ||||
|  | @ -303,7 +304,8 @@ void Source::ParseConfig(SourceConfiguration::Configuration& config, | |||
|                     }); | ||||
|                 } | ||||
|                 LOG_TRACE(Audio_DSP, "enqueuing queued {} addr={:#010x} len={} id={}", i, | ||||
|                           b.physical_address, b.length, b.buffer_id); | ||||
|                           static_cast<u32>(b.physical_address), static_cast<u32>(b.length), | ||||
|                           b.buffer_id); | ||||
|             } | ||||
|         } | ||||
|         config.buffers_dirty = 0; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue