Qt/FSUI: Unify VSync String

This commit is contained in:
KamFretoZ 2025-12-09 18:28:11 +07:00 committed by lightningterror
parent b46c85ee7f
commit 80baa73578
2 changed files with 3 additions and 3 deletions

View File

@ -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."));

View File

@ -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);