From 0a6d2a8102576ce27e3b4cb782467757766e51ab Mon Sep 17 00:00:00 2001 From: Christopher Merrill <47538097+Revan20911@users.noreply.github.com> Date: Fri, 14 Apr 2023 16:21:22 -0500 Subject: [PATCH] Update Ryujinx/Ui/Windows/SettingsWindow.cs Co-authored-by: gdkchan --- Ryujinx/Ui/Windows/SettingsWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/Ui/Windows/SettingsWindow.cs b/Ryujinx/Ui/Windows/SettingsWindow.cs index a5bea3b66..58787211b 100644 --- a/Ryujinx/Ui/Windows/SettingsWindow.cs +++ b/Ryujinx/Ui/Windows/SettingsWindow.cs @@ -543,7 +543,7 @@ namespace Ryujinx.Ui.Windows _directoryChanged = false; } - if (!float.TryParse(_resScaleText.Buffer.Text.Replace(",","."), out float resScaleCustom) || resScaleCustom <= 0.0f) + if (!float.TryParse(_resScaleText.Buffer.Text.Replace(",", "."), out float resScaleCustom) || resScaleCustom <= 0.0f) { resScaleCustom = 1.0f; }