mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 20:43:09 +00:00
Fix SMD exporting for different culture decimal seperators
This commit is contained in:
parent
946fa08518
commit
9918b811a8
1 changed files with 3 additions and 0 deletions
|
@ -94,6 +94,9 @@ namespace Toolbox.Library.Animations
|
|||
|
||||
public void Save(string FileName)
|
||||
{
|
||||
System.Globalization.CultureInfo customCulture = (System.Globalization.CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();
|
||||
customCulture.NumberFormat.NumberDecimalSeparator = ".";
|
||||
|
||||
StringBuilder o = new StringBuilder();
|
||||
|
||||
o.AppendLine("version 1");
|
||||
|
|
Loading…
Reference in a new issue