forgot to stage this -_- fixes d1de18119
This commit is contained in:
YoshiRulz 2020-09-06 09:43:36 +10:00
parent d1de181194
commit 2c77f76a67
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace BizHawk.Client.Common
}
// Accept .tasproj files written from <= 2.5 where the host culture settings used ','
if (double.TryParse(versionStr, NumberStyles.Float, CultureInfo.InvariantCulture, out var parsedWithComma))
if (double.TryParse(versionStr.Replace(',', '.'), NumberStyles.Float, CultureInfo.InvariantCulture, out var parsedWithComma))
{
return parsedWithComma;
}