mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
ioq3 updates
This commit is contained in:
parent
f013e82b98
commit
dc45c33c79
65 changed files with 1660 additions and 301 deletions
|
@ -3766,13 +3766,14 @@ void FS_Flush( fileHandle_t f ) {
|
|||
}
|
||||
|
||||
void FS_FilenameCompletion( const char *dir, const char *ext,
|
||||
qboolean stripExt, void(*callback)(const char *s) ) {
|
||||
qboolean stripExt, void(*callback)(const char *s), qboolean allowNonPureFilesOnDisk ) {
|
||||
char **filenames;
|
||||
int nfiles;
|
||||
int i;
|
||||
char filename[ MAX_STRING_CHARS ];
|
||||
|
||||
filenames = FS_ListFilteredFiles( dir, ext, NULL, qfalse, &nfiles );
|
||||
// FIXME: allowNonPureFilesOnDisk
|
||||
filenames = FS_ListFilteredFiles( dir, ext, NULL, qtrue, &nfiles );
|
||||
|
||||
FS_SortFileList( filenames, nfiles );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue