Set the default culture to InvariantCulture
This mainly affects some C# string conversions (ToString and Parse).
This commit is contained in:
parent
675f3f6f81
commit
3df2112be7
1 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,7 @@ using Ryujinx.Graphics.Gal;
|
|||
using Ryujinx.Graphics.Gal.OpenGL;
|
||||
using Ryujinx.HLE;
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
|
||||
namespace Ryujinx
|
||||
|
@ -14,6 +15,9 @@ namespace Ryujinx
|
|||
{
|
||||
Console.Title = "Ryujinx Console";
|
||||
|
||||
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
|
||||
CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.InvariantCulture;
|
||||
|
||||
IGalRenderer Renderer = new OGLRenderer();
|
||||
|
||||
IAalOutput AudioOut = new OpenALAudioOut();
|
||||
|
|
Loading…
Reference in a new issue