mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 18:25:45 -04:00
Settings: Rename 'FPS' to 'Game Frame Rate'
This commit is contained in:
@ -125,9 +125,9 @@ DisplaySettingsWidget::DisplaySettingsWidget(QtHostInterface* host_interface, QW
|
||||
dialog->registerWidgetHelp(m_ui.showOSDMessages, tr("Show OSD Messages"), tr("Checked"),
|
||||
tr("Shows on-screen-display messages when events occur such as save states being "
|
||||
"created/loaded, screenshots being taken, etc."));
|
||||
dialog->registerWidgetHelp(m_ui.showFPS, tr("Show FPS"), tr("Unchecked"),
|
||||
dialog->registerWidgetHelp(m_ui.showFPS, tr("Show Game Frame Rate"), tr("Unchecked"),
|
||||
tr("Shows the internal frame rate of the game in the top-right corner of the display."));
|
||||
dialog->registerWidgetHelp(m_ui.showVPS, tr("Show VPS"), tr("Unchecked"),
|
||||
dialog->registerWidgetHelp(m_ui.showVPS, tr("Show Display FPS"), tr("Unchecked"),
|
||||
tr("Shows the number of frames (or v-syncs) displayed per second by the system in the "
|
||||
"top-right corner of the display."));
|
||||
dialog->registerWidgetHelp(
|
||||
|
@ -184,7 +184,7 @@
|
||||
<item row="2" column="1">
|
||||
<widget class="QCheckBox" name="showFPS">
|
||||
<property name="text">
|
||||
<string>Show FPS</string>
|
||||
<string>Show Game Frame Rate</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -198,7 +198,7 @@
|
||||
<item row="3" column="1">
|
||||
<widget class="QCheckBox" name="showVPS">
|
||||
<property name="text">
|
||||
<string>Show VPS</string>
|
||||
<string>Show Display FPS</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -1965,9 +1965,9 @@ void DrawSettingsWindow()
|
||||
settings_changed |= ToggleButton("Show OSD Messages", "Shows on-screen-display messages when events occur.",
|
||||
&s_settings_copy.display_show_osd_messages);
|
||||
settings_changed |= ToggleButton(
|
||||
"Show Game FPS", "Shows the internal frame rate of the game in the top-right corner of the display.",
|
||||
"Show Game Frame Rate", "Shows the internal frame rate of the game in the top-right corner of the display.",
|
||||
&s_settings_copy.display_show_fps);
|
||||
settings_changed |= ToggleButton("Show Display FPS (VPS)",
|
||||
settings_changed |= ToggleButton("Show Display FPS",
|
||||
"Shows the number of frames (or v-syncs) displayed per second by the system "
|
||||
"in the top-right corner of the display.",
|
||||
&s_settings_copy.display_show_vps);
|
||||
|
Reference in New Issue
Block a user