Change from korean_tolower to ascii_tolower for better understandability

This commit is contained in:
SuntrustDev
2026-02-09 02:41:59 +01:00
parent 73defc20d0
commit 6929730dd6
5 changed files with 12 additions and 13 deletions

View File

@@ -120,7 +120,7 @@ int CResource::ConvertPathName(const char * c_szPathName, char * pszRetPathName,
if (*pc == '/')
*(pszRetPathName++) = '\\';
else
*(pszRetPathName++) = (char) korean_tolower(*pc);
*(pszRetPathName++) = (char) ascii_tolower(*pc);
}
*pszRetPathName = '\0';