UI: Force English resources (prevents crash on non-English OSes)
This commit is contained in:
parent
b6cb94c8ec
commit
7d37cb3362
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ namespace Mesen.GUI.Config
|
|||
{
|
||||
public class PreferencesConfig
|
||||
{
|
||||
public Language DisplayLanguage = Language.SystemDefault;
|
||||
public Language DisplayLanguage = Language.English;
|
||||
public bool AutomaticallyCheckForUpdates = true;
|
||||
public bool SingleInstance = true;
|
||||
public bool AutoLoadPatches = true;
|
||||
|
|
|
@ -65,7 +65,7 @@ namespace Mesen.GUI
|
|||
|
||||
if(ConfigManager.GetConfigFile() == null) {
|
||||
//Show config wizard
|
||||
ResourceHelper.LoadResources(Language.SystemDefault);
|
||||
ResourceHelper.LoadResources(Language.English);
|
||||
Application.Run(new frmConfigWizard());
|
||||
|
||||
if(ConfigManager.GetConfigFile() == null) {
|
||||
|
|
Loading…
Add table
Reference in a new issue