| 176 | } |
| 177 | |
| 178 | ID_INLINE void idCmdSystem::ArgCompletion_ConfigName( const idCmdArgs &args, void(*callback)( const char *s ) ) { |
| 179 | cmdSystem->ArgCompletion_FolderExtension( args, callback, "/", true, ".cfg", NULL ); |
| 180 | } |
| 181 | |
| 182 | ID_INLINE void idCmdSystem::ArgCompletion_SaveGame( const idCmdArgs &args, void(*callback)( const char *s ) ) { |
| 183 | cmdSystem->ArgCompletion_FolderExtension( args, callback, "SaveGames/", true, ".save", NULL ); |
nothing calls this directly
no test coverage detected