mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	yuzu: Fix clang format
This commit is contained in:
		@@ -41,7 +41,8 @@ void ConfigureGeneral::SetConfiguration() {
 | 
			
		||||
    ui->toggle_background_pause->setChecked(UISettings::values.pause_when_in_background.GetValue());
 | 
			
		||||
    ui->toggle_hide_mouse->setChecked(UISettings::values.hide_mouse.GetValue());
 | 
			
		||||
    ui->toggle_controller_applet_disabled->setEnabled(runtime_lock);
 | 
			
		||||
    ui->toggle_controller_applet_disabled->setChecked(UISettings::values.controller_applet_disabled.GetValue());
 | 
			
		||||
    ui->toggle_controller_applet_disabled->setChecked(
 | 
			
		||||
        UISettings::values.controller_applet_disabled.GetValue());
 | 
			
		||||
 | 
			
		||||
    ui->toggle_speed_limit->setChecked(Settings::values.use_speed_limit.GetValue());
 | 
			
		||||
    ui->speed_limit->setValue(Settings::values.speed_limit.GetValue());
 | 
			
		||||
@@ -84,7 +85,8 @@ void ConfigureGeneral::ApplyConfiguration() {
 | 
			
		||||
        UISettings::values.select_user_on_boot = ui->toggle_user_on_boot->isChecked();
 | 
			
		||||
        UISettings::values.pause_when_in_background = ui->toggle_background_pause->isChecked();
 | 
			
		||||
        UISettings::values.hide_mouse = ui->toggle_hide_mouse->isChecked();
 | 
			
		||||
        UISettings::values.controller_applet_disabled = ui->toggle_controller_applet_disabled->isChecked();
 | 
			
		||||
        UISettings::values.controller_applet_disabled =
 | 
			
		||||
            ui->toggle_controller_applet_disabled->isChecked();
 | 
			
		||||
 | 
			
		||||
        // Guard if during game and set to game-specific value
 | 
			
		||||
        if (Settings::values.use_speed_limit.UsingGlobal()) {
 | 
			
		||||
 
 | 
			
		||||
@@ -1707,16 +1707,17 @@ bool GMainWindow::LoadROM(const QString& filename, u64 program_id, std::size_t p
 | 
			
		||||
    system->SetFilesystem(vfs);
 | 
			
		||||
 | 
			
		||||
    system->SetAppletFrontendSet({
 | 
			
		||||
        std::make_unique<QtAmiiboSettings>(*this),     // Amiibo Settings
 | 
			
		||||
        (UISettings::values.controller_applet_disabled.GetValue() == true) ? nullptr :
 | 
			
		||||
        std::make_unique<QtControllerSelector>(*this), // Controller Selector
 | 
			
		||||
        std::make_unique<QtErrorDisplay>(*this),       // Error Display
 | 
			
		||||
        nullptr,                                       // Mii Editor
 | 
			
		||||
        nullptr,                                       // Parental Controls
 | 
			
		||||
        nullptr,                                       // Photo Viewer
 | 
			
		||||
        std::make_unique<QtProfileSelector>(*this),    // Profile Selector
 | 
			
		||||
        std::make_unique<QtSoftwareKeyboard>(*this),   // Software Keyboard
 | 
			
		||||
        std::make_unique<QtWebBrowser>(*this),         // Web Browser
 | 
			
		||||
        std::make_unique<QtAmiiboSettings>(*this), // Amiibo Settings
 | 
			
		||||
        (UISettings::values.controller_applet_disabled.GetValue() == true)
 | 
			
		||||
            ? nullptr
 | 
			
		||||
            : std::make_unique<QtControllerSelector>(*this), // Controller Selector
 | 
			
		||||
        std::make_unique<QtErrorDisplay>(*this),             // Error Display
 | 
			
		||||
        nullptr,                                             // Mii Editor
 | 
			
		||||
        nullptr,                                             // Parental Controls
 | 
			
		||||
        nullptr,                                             // Photo Viewer
 | 
			
		||||
        std::make_unique<QtProfileSelector>(*this),          // Profile Selector
 | 
			
		||||
        std::make_unique<QtSoftwareKeyboard>(*this),         // Software Keyboard
 | 
			
		||||
        std::make_unique<QtWebBrowser>(*this),               // Web Browser
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    const Core::SystemResultStatus result{
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user