mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #2296 from MerryMage/auto_is_auto
audio_core: SelectSink should default to auto if sink_id is invalid
This commit is contained in:
		
						commit
						42edd7911e
					
				
					 1 changed files with 7 additions and 12 deletions
				
			
		|  | @ -56,22 +56,17 @@ void AddAddressSpace(Kernel::VMManager& address_space) { | |||
| } | ||||
| 
 | ||||
| void SelectSink(std::string sink_id) { | ||||
|     if (sink_id == "auto") { | ||||
|         // Auto-select.
 | ||||
|         // g_sink_details is ordered in terms of desirability, with the best choice at the front.
 | ||||
|         const auto& sink_detail = g_sink_details.front(); | ||||
|         DSP::HLE::SetSink(sink_detail.factory()); | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     auto iter = | ||||
|         std::find_if(g_sink_details.begin(), g_sink_details.end(), | ||||
|                      [sink_id](const auto& sink_detail) { return sink_detail.id == sink_id; }); | ||||
| 
 | ||||
|     if (iter == g_sink_details.end()) { | ||||
|         LOG_ERROR(Audio, "AudioCore::SelectSink given invalid sink_id"); | ||||
|         DSP::HLE::SetSink(std::make_unique<NullSink>()); | ||||
|         return; | ||||
|     if (sink_id == "auto" || iter == g_sink_details.end()) { | ||||
|         if (sink_id != "auto") { | ||||
|             LOG_ERROR(Audio, "AudioCore::SelectSink given invalid sink_id %s", sink_id.c_str()); | ||||
|         } | ||||
|         // Auto-select.
 | ||||
|         // g_sink_details is ordered in terms of desirability, with the best choice at the front.
 | ||||
|         iter = g_sink_details.begin(); | ||||
|     } | ||||
| 
 | ||||
|     DSP::HLE::SetSink(iter->factory()); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue