Skip to content

Instantly share code, notes, and snippets.

@UserUnknownFactor
Last active June 7, 2025 08:33
Show Gist options
  • Save UserUnknownFactor/3482659ae4e9d3ae301b364e9d5b0022 to your computer and use it in GitHub Desktop.
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
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