From bf36432432f1cd02ad874763777d4c5b42bdd44f Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 22 Jun 2025 02:32:26 +1000 Subject: [PATCH] Qt: Swap console/emulation icons Better match I think. --- src/duckstation-qt/mainwindow.ui | 4 ++-- src/duckstation-qt/settingswindow.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/duckstation-qt/mainwindow.ui b/src/duckstation-qt/mainwindow.ui index 7d3e4f406..422657d8e 100644 --- a/src/duckstation-qt/mainwindow.ui +++ b/src/duckstation-qt/mainwindow.ui @@ -370,7 +370,7 @@ - + C&onsole @@ -378,7 +378,7 @@ - + E&mulation diff --git a/src/duckstation-qt/settingswindow.cpp b/src/duckstation-qt/settingswindow.cpp index 64b95e7c2..c982b38a4 100644 --- a/src/duckstation-qt/settingswindow.cpp +++ b/src/duckstation-qt/settingswindow.cpp @@ -104,12 +104,12 @@ void SettingsWindow::addPages() "used.

Mouse over an option for additional information, and Shift+Wheel to scroll this panel.")); addWidget( m_console_settings = new ConsoleSettingsWidget(this, m_ui.settingsContainer), tr("Console"), - QStringLiteral("chip-2-line"), + QStringLiteral("emulation-line"), tr("Console Settings
These options determine the configuration of the simulated " "console.

Mouse over an option for additional information, and Shift+Wheel to scroll this panel.")); addWidget( m_emulation_settings = new EmulationSettingsWidget(this, m_ui.settingsContainer), tr("Emulation"), - QStringLiteral("emulation-line"), + QStringLiteral("chip-2-line"), tr("Emulation Settings
These options determine the speed and runahead behavior of the " "system.

Mouse over an option for additional information, and Shift+Wheel to scroll this panel."));