From 80baa7357825757d42bd772e52e7bd9ed5756973 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Tue, 9 Dec 2025 18:28:11 +0700 Subject: [PATCH] Qt/FSUI: Unify VSync String --- pcsx2-qt/Settings/GraphicsSettingsWidget.cpp | 2 +- pcsx2/ImGui/FullscreenUI.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp b/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp index b39d40d0bd..1f788e6d1f 100644 --- a/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp +++ b/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp @@ -729,7 +729,7 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsWindow* settings_dialog, tr("Shows the number of internal video frames displayed per second by the system.")); dialog()->registerWidgetHelp(m_osd.showVPS, tr("Show VPS"), tr("Unchecked"), - tr("Shows the number of V-syncs performed per second by the system.")); + tr("Shows the number of Vsyncs performed per second by the system.")); dialog()->registerWidgetHelp(m_osd.showResolution, tr("Show Resolution"), tr("Unchecked"), tr("Shows the internal resolution of the game.")); diff --git a/pcsx2/ImGui/FullscreenUI.cpp b/pcsx2/ImGui/FullscreenUI.cpp index 7de068cad9..b26d9c6ed6 100644 --- a/pcsx2/ImGui/FullscreenUI.cpp +++ b/pcsx2/ImGui/FullscreenUI.cpp @@ -4268,7 +4268,7 @@ void FullscreenUI::DrawInterfaceSettingsPage() FSUI_CSTR("Shows the number of internal video frames displayed per second by the system."), "EmuCore/GS", "OsdShowFPS", false); DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_FA_CLAPPERBOARD, "Show VPS"), - FSUI_CSTR("Shows the number of V-syncs performed per second by the system."), "EmuCore/GS", "OsdShowVPS", false); + FSUI_CSTR("Shows the number of Vsyncs performed per second by the system."), "EmuCore/GS", "OsdShowVPS", false); DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_PF_MONITOR_CODE, "Show Resolution"), FSUI_CSTR("Shows the internal resolution of the game."), "EmuCore/GS", "OsdShowResolution", false); DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_FA_COMPUTER, "Show Hardware Info"), @@ -5196,7 +5196,7 @@ void FullscreenUI::DrawMemoryCardSettingsPage() std::string file_key(fmt::format("Slot{}_Filename", port + 1)); DrawToggleSetting(bsi, - SmallString::from_format(fmt::runtime(FSUI_ICONSTR_S(ICON_PF_MEMORY_CARD, "Card Enabled", "##card_enabled_{}")), port), + SmallString::from_format(fmt::runtime(FSUI_ICONSTR_S(ICON_PF_MEMORY_CARD, "Memory Card Enabled", "##card_enabled_{}")), port), FSUI_CSTR("If not set, this card will be considered unplugged."), "MemoryCards", enable_key.c_str(), true); const bool enabled = GetEffectiveBoolSetting(bsi, "MemoryCards", enable_key.c_str(), true);