Last active
June 7, 2025 08:33
-
-
Save UserUnknownFactor/3482659ae4e9d3ae301b364e9d5b0022 to your computer and use it in GitHub Desktop.
This is a C# patch for games locked to Japanese locale due to incorrectly using CultureInfo defaults
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("ja-JP", false); | |
System.Threading.Thread.CurrentThread.CurrentCulture = ci; | |
System.Threading.Thread.CurrentThread.CurrentUICulture = ci; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment