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

View File

@@ -236,7 +236,7 @@ int __ConvertPathName(const char * c_szPathName, char * pszRetPathName, int retL
if (*pc == '/')
*(pszRetPathName++) = '\\';
else
*(pszRetPathName++) = (char) korean_tolower(*pc);
*(pszRetPathName++) = (char) ascii_tolower(*pc);
}
*pszRetPathName = '\0';
@@ -374,7 +374,7 @@ DWORD CResourceManager::__GetFileCRC(const char * c_szFileName, const char ** c_
if (src[len]=='/')
dst[len] = '\\';
else
dst[len] = (char) korean_tolower(src[len]);
dst[len] = (char) ascii_tolower(src[len]);
++len;
}