Skip to content

Commit

Permalink
English by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamsilva committed Oct 1, 2023
1 parent ef5249c commit deb8a92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/frontend/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ int ResetAppConfig()
#else
app_config.show_log = 0;
#endif
app_config.language = 1;
app_config.language = 0;

return 0;
}
Expand Down
4 changes: 2 additions & 2 deletions source/frontend/lang.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ LangEntry lang_entries[] = {

#define N_LANGS (sizeof(lang_entries) / sizeof(LangEntry))

char **cur_lang = lang_chs;
char **cur_lang = lang_us;

int GetLangsLength()
{
Expand Down Expand Up @@ -97,4 +97,4 @@ char *GetLangString(LangString *lang_s)
return cur_lang[lang_s->lang];
else
return lang_s->string;
}
}

0 comments on commit deb8a92

Please sign in to comment.