From: divverent Date: Fri, 4 May 2007 11:40:58 +0000 (+0000) Subject: oops, the r_picmipworld should be CVAR_SAVE of course. Sorry for that. X-Git-Tag: xonotic-v0.1.0preview~3216 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e363a950fcc943c2d36d0e1e8ca417e2e5542723;p=xonotic%2Fdarkplaces.git oops, the r_picmipworld should be CVAR_SAVE of course. Sorry for that. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7230 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/model_brush.c b/model_brush.c index 0b965392..03cfb584 100644 --- a/model_brush.c +++ b/model_brush.c @@ -31,7 +31,7 @@ cvar_t halflifebsp = {0, "halflifebsp", "0", "indicates the current map is hlbsp cvar_t mcbsp = {0, "mcbsp", "0", "indicates the current map is mcbsp format (useful to know because of different bounding box sizes)"}; cvar_t r_novis = {0, "r_novis", "0", "draws whole level, see also sv_cullentities_pvs 0"}; cvar_t r_lightmaprgba = {0, "r_lightmaprgba", "1", "whether to use RGBA (32bit) or RGB (24bit) lightmaps"}; -cvar_t r_picmipworld = {0, "r_picmipworld", "1", "whether gl_picmip shall apply to world textures too"}; +cvar_t r_picmipworld = {CVAR_SAVE, "r_picmipworld", "1", "whether gl_picmip shall apply to world textures too"}; cvar_t r_nosurftextures = {0, "r_nosurftextures", "0", "pretends there was no texture lump found in the q1bsp/hlbsp loading (useful for debugging this rare case)"}; cvar_t r_subdivisions_tolerance = {0, "r_subdivisions_tolerance", "4", "maximum error tolerance on curve subdivision for rendering purposes (in other words, the curves will be given as many polygons as necessary to represent curves at this quality)"}; cvar_t r_subdivisions_mintess = {0, "r_subdivisions_mintess", "1", "minimum number of subdivisions (values above 1 will smooth curves that don't need it)"};