From 5ae15c89c3d2d257cdbf03edc98c03e49ce3b1da Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Wed, 8 Nov 2023 10:32:37 -0800 Subject: [PATCH] remove invariant culture here fixes 6e20a3091c6b3229c7d287038e3d0fffd39a84c0 --- .../PropertyGridConverters/BizDateTimeConverter.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Common/PropertyGridConverters/BizDateTimeConverter.cs b/src/BizHawk.Common/PropertyGridConverters/BizDateTimeConverter.cs index 1b6ec45724..71a5766624 100644 --- a/src/BizHawk.Common/PropertyGridConverters/BizDateTimeConverter.cs +++ b/src/BizHawk.Common/PropertyGridConverters/BizDateTimeConverter.cs @@ -9,7 +9,10 @@ namespace BizHawk.Common public override object ConvertTo(ITypeDescriptorContext? context, CultureInfo? culture, object? value, Type destinationType) { if (value is not DateTime d || destinationType != typeof(string)) throw new NotSupportedException("can only do DateTime --> string"); - return d.ToString(DateTimeFormatInfo.InvariantInfo); +#pragma warning disable CA1305 + // this function is explicitly supposed to be locale dependent + return d.ToString(); +#pragma warning restore CA1305 } } }