mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Config: Restore previously selected audio sink option (#1824)
This commit is contained in:
		
							parent
							
								
									af258584d9
								
							
						
					
					
						commit
						98923ab6e5
					
				@ -28,14 +28,14 @@ ConfigureAudio::~ConfigureAudio() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ConfigureAudio::setConfiguration() {
 | 
					void ConfigureAudio::setConfiguration() {
 | 
				
			||||||
 | 
					    int new_sink_index = 0;
 | 
				
			||||||
    for (int index = 0; index < ui->output_sink_combo_box->count(); index++) {
 | 
					    for (int index = 0; index < ui->output_sink_combo_box->count(); index++) {
 | 
				
			||||||
        if (ui->output_sink_combo_box->itemText(index).toStdString() == Settings::values.sink_id) {
 | 
					        if (ui->output_sink_combo_box->itemText(index).toStdString() == Settings::values.sink_id) {
 | 
				
			||||||
            ui->output_sink_combo_box->setCurrentIndex(index);
 | 
					            new_sink_index = index;
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    ui->output_sink_combo_box->setCurrentIndex(new_sink_index);
 | 
				
			||||||
    ui->output_sink_combo_box->setCurrentIndex(0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ConfigureAudio::applyConfiguration() {
 | 
					void ConfigureAudio::applyConfiguration() {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user