Skip to content

Commit

Permalink
use InvariantCulture for using on all countries
Browse files Browse the repository at this point in the history
  • Loading branch information
jprimke committed May 4, 2020
1 parent 2d82c4f commit 08eac13
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -252,4 +252,9 @@ paket-files/
*.sln.iml

# Sample data
.data/
.data/
.fake
.ionide

.fake
.ionide
7 changes: 6 additions & 1 deletion src/unforge/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ namespace unforge
class Program
{
static void Main(params String[] args)
{
{
var ci = System.Globalization.CultureInfo.InvariantCulture;
System.Threading.Thread.CurrentThread.CurrentCulture = ci;
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;


if (args.Length == 0)
{
args = new String[] { "game.v4.dcb" };
Expand Down

0 comments on commit 08eac13

Please sign in to comment.