diff options
Diffstat (limited to 'code/qcommon/files.c')
-rw-r--r-- | code/qcommon/files.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/code/qcommon/files.c b/code/qcommon/files.c index 5cd8c81..8f4779d 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -565,11 +565,22 @@ FS_Remove =========== */ -static void FS_Remove( const char *osPath ) { +void FS_Remove( const char *osPath ) { remove( osPath ); } /* +=========== +FS_HomeRemove + +=========== +*/ +void FS_HomeRemove( const char *homePath ) { + remove( FS_BuildOSPath( fs_homepath->string, + fs_gamedir, homePath ) ); +} + +/* ================ FS_FileExists |