mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Localization files should be sorted case-insensitive
This commit is contained in:
parent
f91d0c1693
commit
b84a47ad3f
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ int compare_strings( const void *pe1, const void *pe2 )
|
|||
{
|
||||
const char *psz1 = ( const char * )pe1;
|
||||
const char *psz2 = ( const char * )pe2;
|
||||
return strcmp( psz1, psz2 );
|
||||
return Q_stricmp( psz1, psz2 );
|
||||
}
|
||||
|
||||
cLocalization::cLocalization()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue