UI: Force English resources (prevents crash on non-English OSes)

This commit is contained in:
Sour 2019-04-01 07:12:07 -04:00
parent b6cb94c8ec
commit 7d37cb3362
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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) {