From 5bf31668328c060d54a0ae59b74f9b6a1514d562 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:48:08 +0700 Subject: [PATCH] Qt: Fix Verbose Status Formatting --- pcsx2-qt/QtHost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2-qt/QtHost.cpp b/pcsx2-qt/QtHost.cpp index 4fed1d4e8c..32ed016004 100644 --- a/pcsx2-qt/QtHost.cpp +++ b/pcsx2-qt/QtHost.cpp @@ -998,7 +998,7 @@ void EmuThread::updatePerformanceMetrics(bool force) QString gs_stat; if (THREAD_VU1) { - gs_stat = tr("Slot: %1 | Volume: %2% | %3 |EE: %4% | VU: %5% | GS: %6%") + gs_stat = tr("Slot: %1 | Volume: %2% | %3 | EE: %4% | VU: %5% | GS: %6%") .arg(SaveStateSelectorUI::GetCurrentSlot()) .arg(SPU2::GetOutputVolume()) .arg(gs_stat_str.c_str())