From 96f5620f688850c9198d8a6e4d9f4d0c69bcbd5d Mon Sep 17 00:00:00 2001 From: BurndiL <94790464+BurndiL@users.noreply.github.com> Date: Sun, 21 Nov 2021 17:50:43 +0100 Subject: [PATCH] Float Parsing issue fix (#884) --- BetterJoyForCemu/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BetterJoyForCemu/Program.cs b/BetterJoyForCemu/Program.cs index b8ee948..170e78e 100644 --- a/BetterJoyForCemu/Program.cs +++ b/BetterJoyForCemu/Program.cs @@ -511,6 +511,9 @@ namespace BetterJoyForCemu { private static string appGuid = "1bf709e9-c133-41df-933a-c9ff3f664c7b"; // randomly-generated static void Main(string[] args) { + // Setting the culturesettings so float gets parsed correctly + CultureInfo.CurrentCulture = new CultureInfo("en-US", false); + // Set the correct DLL for the current OS SetupDlls();