diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-10-07 20:09:00 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-10-07 20:09:00 +0000 |
commit | e2a278c4a223328ac8c90d8c2b8b7c86cf095fa1 (patch) | |
tree | 066598d97300032c7a6f88f4cf0b4d656adbe4b1 /source/files.c | |
parent | 8c81e98c2ae39b84efda70df9eb30a6d8a7a45be (diff) |
Added sv_uptime cvar.
Optimized some string buffer functions.
Made redirect buffer size safe.
Diffstat (limited to 'source/files.c')
-rw-r--r-- | source/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/files.c b/source/files.c index 253fac0..d215577 100644 --- a/source/files.c +++ b/source/files.c @@ -993,7 +993,7 @@ int FS_LoadFileEx( const char *path, void **buffer, uint32 flags ) { path = FS_ExpandLinks( path ); if( !FS_ValidatePath( path ) ) { - Sys_DebugBreak(); + // Sys_DebugBreak(); FS_DPrintf( "FS_LoadFile: refusing invalid path: %s\n", path ); return -1; } |