From 49e6170b49fbb933eddec6d0e3f946320c68832f Mon Sep 17 00:00:00 2001 From: Andrey Nazarov Date: Wed, 23 Apr 2008 15:02:41 +0000 Subject: Added `dumpents' server command. Added support for `cl_noskins' value of 2 (default all female skins to `female/athena', all male skins to `male/grunt'). Renamed `scoreshot' command to `aashot', added `aadump' command. Fixed several alignment issues on ARM architecture. Server browser menu now indicates full and password protected servers with color codes. Implemented history search in console with Ctrl+R, Ctrl+S. Removed `cl_railtrail_alpha' variable, all `cl_rail*_color' variables now accept colors in #RRGGBBAA format. Added `map_override' cvar (enables loading map entity lump from external maps/*.ent file). Made `quit' command accept extra arguments. Made `draw' command accept arbitrary colors in #RRGGBBAA format. Fixed debian packages. --- source/r_bsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/r_bsp.c') diff --git a/source/r_bsp.c b/source/r_bsp.c index 82d2372..2c10438 100644 --- a/source/r_bsp.c +++ b/source/r_bsp.c @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // r_bsp.c -- map loading functions common for both renderers // -#include "config.h" +#include #include "q_shared.h" #include "com_public.h" #include "q_files.h" @@ -589,7 +589,7 @@ void Bsp_LoadWorld( const char *path ) { byte *data; size_t length, endpos; - length = fs.LoadFileEx( path, ( void ** )&data, FS_FLAG_CACHE ); + length = fs.LoadFileEx( path, ( void ** )&data, FS_FLAG_CACHE, TAG_FREE ); if( !data ) { Com_Error( ERR_DROP, "%s: couldn't load %s", __func__, path ); } -- cgit v1.2.3