Skip to content

Commit

Permalink
Merge pull request #22 from jprimke/master
Browse files Browse the repository at this point in the history
use InvariantCulture for using on all countries
  • Loading branch information
peter-dolkens authored May 4, 2020
2 parents 2d82c4f + 08eac13 commit b14bfa3
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 b14bfa3

Please sign in to comment.