mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
FSUI: Use emoji for reset settings
Some checks are pending
🐧 Linux Builds / AppImage (push) Waiting to run
🐧 Linux Builds / Flatpak (push) Waiting to run
🍎 MacOS Builds / Defaults (push) Waiting to run
🖥️ Windows Builds / Lint VS Project Files (push) Waiting to run
🖥️ Windows Builds / SSE4 (push) Blocked by required conditions
🖥️ Windows Builds / AVX2 (push) Blocked by required conditions
🖥️ Windows Builds / CMake (push) Waiting to run
Some checks are pending
🐧 Linux Builds / AppImage (push) Waiting to run
🐧 Linux Builds / Flatpak (push) Waiting to run
🍎 MacOS Builds / Defaults (push) Waiting to run
🖥️ Windows Builds / Lint VS Project Files (push) Waiting to run
🖥️ Windows Builds / SSE4 (push) Blocked by required conditions
🖥️ Windows Builds / AVX2 (push) Blocked by required conditions
🖥️ Windows Builds / CMake (push) Waiting to run
This commit is contained in:
parent
6f3c189129
commit
572eae596c
@ -3684,7 +3684,7 @@ void FullscreenUI::DrawInterfaceSettingsPage()
|
||||
s_osd_position_options, s_osd_position_values, std::size(s_osd_position_options), true);
|
||||
|
||||
MenuHeading(FSUI_CSTR("Operations"));
|
||||
if (MenuButton(FSUI_ICONSTR(ICON_FA_DUMPSTER_FIRE, "Reset Settings"),
|
||||
if (MenuButton(FSUI_ICONSTR(u8"🔥", "Reset Settings"),
|
||||
FSUI_CSTR("Resets configuration to defaults (excluding controller settings)."), !IsEditingGameSettings(bsi)))
|
||||
{
|
||||
DoResetSettings();
|
||||
@ -4874,7 +4874,7 @@ void FullscreenUI::DoSaveInputProfile()
|
||||
|
||||
void FullscreenUI::DoResetSettings()
|
||||
{
|
||||
OpenConfirmMessageDialog(FSUI_ICONSTR(ICON_FA_DUMPSTER_FIRE, "Reset Settings"),
|
||||
OpenConfirmMessageDialog(FSUI_ICONSTR(u8"🔥", "Reset Settings"),
|
||||
FSUI_STR("Are you sure you want to restore the default settings? Any preferences will be lost."), [](bool result) {
|
||||
if (result)
|
||||
{
|
||||
@ -4902,7 +4902,7 @@ void FullscreenUI::DrawControllerSettingsPage()
|
||||
DoSaveInputProfile();
|
||||
}
|
||||
|
||||
if (MenuButton(FSUI_ICONSTR(ICON_FA_DUMPSTER_FIRE, "Reset Settings"),
|
||||
if (MenuButton(FSUI_ICONSTR(u8"🔥", "Reset Settings"),
|
||||
FSUI_CSTR("Resets all configuration to defaults (including bindings).")))
|
||||
{
|
||||
ResetControllerSettings();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user