forked from metin-server/m2dev-client-src
Change from korean_tolower to ascii_tolower for better understandability
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user