mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	audio_core/hle/source.cpp: clear config.play_position_dirty regardless of config.play_position value. (#7349)
Cosmetic-ish change so we dont incorrectly log about unhandled dirty flags
This commit is contained in:
		
							parent
							
								
									cca8c08a9a
								
							
						
					
					
						commit
						9c84721d84
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -161,12 +161,12 @@ void Source::ParseConfig(SourceConfiguration::Configuration& config, | ||||||
|                   static_cast<std::size_t>(state.mono_or_stereo)); |                   static_cast<std::size_t>(state.mono_or_stereo)); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |     // play_position applies only to the embedded buffer, and defaults to 0 w/o a dirty bit
 | ||||||
|  |     // This will be the starting sample for the first time the buffer is played.
 | ||||||
|     u32_dsp play_position = {}; |     u32_dsp play_position = {}; | ||||||
|     if (config.play_position_dirty && config.play_position != 0) { |     if (config.play_position_dirty) { | ||||||
|         config.play_position_dirty.Assign(0); |         config.play_position_dirty.Assign(0); | ||||||
|         play_position = config.play_position; |         play_position = config.play_position; | ||||||
|         // play_position applies only to the embedded buffer, and defaults to 0 w/o a dirty bit
 |  | ||||||
|         // This will be the starting sample for the first time the buffer is played.
 |  | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     // TODO(xperia64): Is this in the correct spot in terms of the bit handling order?
 |     // TODO(xperia64): Is this in the correct spot in terms of the bit handling order?
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue