Browse Source

Remove lowercase-ing in listdirectory()

pull/2/head
Alibek Omarov 6 years ago
parent
commit
0d035746d5
  1. 3
      engine/common/filesystem.c

3
engine/common/filesystem.c

@ -299,9 +299,12 @@ static void listdirectory( stringlist_t *list, const char *path, qboolean lowerc @@ -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
}
/*

Loading…
Cancel
Save