mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 02:13:43 +00:00 
			
		
		
		
	Fixups
This commit is contained in:
		
							parent
							
								
									41e99d8880
								
							
						
					
					
						commit
						fd1ef25257
					
				@ -60,7 +60,7 @@ public:
 | 
			
		||||
    void OperationModeChanged();
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    std::queue<AppletMessage> messages{};
 | 
			
		||||
    std::queue<AppletMessage> messages;
 | 
			
		||||
    Kernel::SharedPtr<Kernel::Event> on_new_message;
 | 
			
		||||
    Kernel::SharedPtr<Kernel::Event> on_operation_mode_changed;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@ -41,17 +41,8 @@ void ConfigureGeneral::PopulateHotkeyList(const HotkeyRegistry& registry) {
 | 
			
		||||
    ui->widget->Populate(registry);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void ConfigureGeneral::applyConfiguration() {
 | 
			
		||||
    UISettings::values.gamedir_deepscan = ui->toggle_deepscan->isChecked();
 | 
			
		||||
    UISettings::values.confirm_before_closing = ui->toggle_check_exit->isChecked();
 | 
			
		||||
    UISettings::values.theme =
 | 
			
		||||
        ui->theme_combobox->itemData(ui->theme_combobox->currentIndex()).toString();
 | 
			
		||||
 | 
			
		||||
    Settings::values.use_cpu_jit = ui->use_cpu_jit->isChecked();
 | 
			
		||||
    const bool pre_docked_mode = Settings::values.use_docked_mode;
 | 
			
		||||
    Settings::values.use_docked_mode = ui->use_docked_mode->isChecked();
 | 
			
		||||
 | 
			
		||||
    if (pre_docked_mode != Settings::values.use_docked_mode) {
 | 
			
		||||
void ConfigureGeneral::CheckIfOperationChanged(bool last_state, bool new_state) {
 | 
			
		||||
    if (last_state != new_state) {
 | 
			
		||||
        Core::System& system{Core::System::GetInstance()};
 | 
			
		||||
        Service::SM::ServiceManager& sm = system.ServiceManager();
 | 
			
		||||
 | 
			
		||||
@ -70,5 +61,18 @@ void ConfigureGeneral::applyConfiguration() {
 | 
			
		||||
            applet_ae->GetMessageQueue()->OperationModeChanged();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void ConfigureGeneral::applyConfiguration() {
 | 
			
		||||
    UISettings::values.gamedir_deepscan = ui->toggle_deepscan->isChecked();
 | 
			
		||||
    UISettings::values.confirm_before_closing = ui->toggle_check_exit->isChecked();
 | 
			
		||||
    UISettings::values.theme =
 | 
			
		||||
        ui->theme_combobox->itemData(ui->theme_combobox->currentIndex()).toString();
 | 
			
		||||
 | 
			
		||||
    Settings::values.use_cpu_jit = ui->use_cpu_jit->isChecked();
 | 
			
		||||
    const bool pre_docked_mode = Settings::values.use_docked_mode;
 | 
			
		||||
    Settings::values.use_docked_mode = ui->use_docked_mode->isChecked();
 | 
			
		||||
    CheckIfOperationChanged(pre_docked_mode, Settings::values.use_docked_mode);
 | 
			
		||||
 | 
			
		||||
    Settings::values.enable_nfc = ui->enable_nfc->isChecked();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -25,6 +25,7 @@ public:
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    void setConfiguration();
 | 
			
		||||
    void CheckIfOperationChanged(bool last_state, bool new_state);
 | 
			
		||||
 | 
			
		||||
    std::unique_ptr<Ui::ConfigureGeneral> ui;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user