Compare commits
2 Commits
8d27c24328
...
e7b6680895
Author | SHA1 | Date | |
---|---|---|---|
e7b6680895 | |||
187ecd53f2 |
@ -3,7 +3,7 @@
|
||||
#include <d3d9.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <math.h>
|
||||
#include <vector>
|
||||
|
||||
#define APP_NAME _T("Metin2 Config")
|
||||
#define FILENAME_CONFIG "metin2.cfg"
|
||||
@ -164,12 +164,24 @@ BOOL CMainDialog::OnInitDialog(CWindow wndFocus, LPARAM lInitParam)
|
||||
m_comboShadow.SetCurSel(m_stConfig.iShadowLevel);
|
||||
|
||||
// Language
|
||||
ATL::CString language;
|
||||
|
||||
// Load the languages into an array
|
||||
std::vector<ATL::CString> languages;
|
||||
for (int i = 0; i < kLanguageMax; ++i) {
|
||||
ATL::CString language;
|
||||
language.LoadString(kLanguageConfig[i].stringId);
|
||||
m_comboLanguage.InsertString(i, language);
|
||||
languages.push_back(language);
|
||||
}
|
||||
|
||||
// Sort the array
|
||||
std::sort(languages.begin(), languages.end(), [](const ATL::CString& a, const ATL::CString& b) {
|
||||
return a.CompareNoCase(b) < 0;
|
||||
});
|
||||
|
||||
// Add the languages to the combo
|
||||
for (auto& language : languages)
|
||||
m_comboLanguage.AddString(language);
|
||||
|
||||
m_stConfig.language = std::clamp((int) m_stConfig.language, 0, kLanguageMax - 1);
|
||||
|
||||
m_comboLanguage.SetCurSel(m_stConfig.language);
|
||||
|
15
src/Config/Metin2Config.exe.manifest
Normal file
15
src/Config/Metin2Config.exe.manifest
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Microsoft.Windows.Common-Controls"
|
||||
version="6.0.0.0"
|
||||
processorArchitecture="*"
|
||||
publicKeyToken="6595b64144ccf1df"
|
||||
language="*"
|
||||
/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
</assembly>
|
@ -17,3 +17,6 @@ IDR_MAINFRAME ICON "metin2.ico"
|
||||
#define METIN2_COMPONENT_TYPE VFT_APP
|
||||
|
||||
#include <version_info.rc>
|
||||
|
||||
// Visual Styles manifest
|
||||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "Metin2Config.exe.manifest"
|
||||
|
BIN
src/Config/ui.rc
BIN
src/Config/ui.rc
Binary file not shown.
Reference in New Issue
Block a user