1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

GLideNUI-wtl: Fix a couple oversights

This commit is contained in:
oddMLan 2020-04-26 04:59:48 -07:00 committed by Sergey Lipskiy
parent 41eaca1af9
commit 0d68c25143
2 changed files with 2 additions and 1 deletions

View File

@ -224,7 +224,7 @@ void loadDefaultStrings(void)
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_DEVELOPER, "Developer"));
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_BETA_TESTER, "Beta tester"));
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_GUI_DESIGNER, "GUI designer"));
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_AND_MORE, ".. and more"));
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_AND_MORE, "... and more"));
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_AUTHOR_GLN64, "Author of the original glN64 graphics plugin"));
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_AUTHOR_GLES2N64, "Author of gles2n64, a port of glN64 to GL ES 2.0"));
g_defaultStrings.insert(LANG_STRINGS::value_type(ABOUT_AUTHOR_GLIDEHQ, "Author of the GlideHQ texture library"));

View File

@ -113,6 +113,7 @@ void CTextureEnhancementTab::ApplyLanguage(void)
CComboBox enhancementComboBox(GetDlgItem(IDC_CMB_ENHANCEMENT));
selectedIndx = enhancementComboBox.GetCurSel();
enhancementComboBox.ResetContent();
enhancementComboBox.AddString(wGS(TEXTURE_ENHANCEMENT_NONE).c_str());
enhancementComboBox.AddString(wGS(TEXTURE_ENHANCEMENT_STORE).c_str());
enhancementComboBox.AddString(L"X2");