diff options
author | Zack Middleton <zturtleman@gmail.com> | 2013-04-24 14:11:18 -0500 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-05-03 16:11:37 +0100 |
commit | 25b80077d4c81af8ac922150598f82bddde808cb (patch) | |
tree | a0162af401d09effcd0ad2cd3406b6bd401b9a3b /src/qcommon/qcommon.h | |
parent | 9d3c009673517a8edf82bf0e1f63eca4eadb4a28 (diff) |
Don't allow modifying qvms or pk3s
Exception for allowing pk3s to be downloaded.
Diffstat (limited to 'src/qcommon/qcommon.h')
-rw-r--r-- | src/qcommon/qcommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/qcommon.h b/src/qcommon/qcommon.h index 6f235ee9..bf195ec7 100644 --- a/src/qcommon/qcommon.h +++ b/src/qcommon/qcommon.h @@ -622,7 +622,7 @@ fileHandle_t FS_FCreateOpenPipeFile( const char *filename ); fileHandle_t FS_SV_FOpenFileWrite( const char *filename ); long FS_SV_FOpenFileRead( const char *filename, fileHandle_t *fp ); -void FS_SV_Rename( const char *from, const char *to ); +void FS_SV_Rename( const char *from, const char *to, qboolean safe ); long FS_FOpenFileRead( const char *qpath, fileHandle_t *file, qboolean uniqueFILE ); // if uniqueFILE is true, then a new FILE will be fopened even if the file // is found in an already open pak file. If uniqueFILE is false, you must call |