Fix tasproj version writing not using invariant culture
generated "v1,1" for me not a big issue in practice as it was already handled, but better to fix
This commit is contained in:
parent
5afb6ca454
commit
fea85649bb
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
||||
|
@ -28,7 +28,7 @@ namespace BizHawk.Client.Common
|
|||
foreach (var (k, v) in old.HeaderEntries) tas.HeaderEntries[k] = v;
|
||||
|
||||
// TODO: we have this version number string generated in multiple places
|
||||
tas.HeaderEntries[HeaderKeys.MovieVersion] = $"BizHawk v2.0 Tasproj v{TasMovie.CurrentVersion}";
|
||||
tas.HeaderEntries[HeaderKeys.MovieVersion] = $"BizHawk v2.0 Tasproj v{TasMovie.CurrentVersion.ToString(NumberFormatInfo.InvariantInfo)}";
|
||||
|
||||
tas.SyncSettingsJson = old.SyncSettingsJson;
|
||||
|
||||
|
|
Loading…
Reference in New Issue