2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-26 03:39:16 +01:00

Remove lowercase-ing in listdirectory()

This commit is contained in:
Alibek Omarov 2018-04-22 13:10:16 +03:00
parent ec41db7ef8
commit 0d035746d5

View File

@ -299,9 +299,12 @@ static void listdirectory( stringlist_t *list, const char *path, qboolean lowerc
closedir( dir );
#endif
// seems not needed anymore
#if 0
// convert names to lowercase because windows doesn't care, but pattern matching code often does
if( lowercase )
listlowercase( list );
#endif
}
/*