From d6294e6b99b5e7d4888dc577e36ee12495e139d6 Mon Sep 17 00:00:00 2001 From: Collecting Date: Thu, 30 Oct 2025 05:37:25 +0000 Subject: [PATCH] revert 38ef9a30ec8621c0199784e1ddf1256bbaf6022c revert fix: CI Error Refactoring error (with another, need to indent) Signed-off-by: Collecting --- src/citron/main.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/citron/main.cpp b/src/citron/main.cpp index 7134441e0..7fffdb998 100644 --- a/src/citron/main.cpp +++ b/src/citron/main.cpp @@ -2024,10 +2024,12 @@ void GMainWindow::BootGame(const QString& filename, Service::AM::FrontendAppletP system->ApplySettings(); // Final Fantasy Tactics requires single-core mode to boot properly -if (title_id == 0x010038B015560000ULL) { - LOG_INFO(Frontend, "Applying workaround: forcing single-core mode for Final Fantasy Tactics"); - Settings::values.use_multi_core.SetValue(false); -} + if (title_id == UICommon::TitleID::FinalFantasyTactics) { + LOG_INFO(Frontend, "Applying workaround: forcing single-core mode for Final Fantasy Tactics"); + if (title_id == 0x010038B015560000ULL) { + Settings::values.use_multi_core.SetValue(false); + } + } Settings::LogSettings();