]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Precache the texture only if the cvar is enabled.
authorMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 24 Jun 2010 14:56:31 +0000 (17:56 +0300)
committerMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 24 Jun 2010 14:56:31 +0000 (17:56 +0300)
qcsrc/client/View.qc

index 1728623756bfc1a63013c2c02e3e6dbe2c81870f..555f70f7ad0a234e796f70b1fcf0a25f14f10462 100644 (file)
@@ -564,10 +564,12 @@ void CSQC_UpdateView(float w, float h)
        reticle_pos_x = (vid_conwidth - reticle_size_x) / 2;
        reticle_pos_y = (vid_conheight - reticle_size_y) / 2;
 
-       precache_pic("textures/reticle_nex");
        if(cvar("cl_reticle_nex"))
-       if(zoom_type == 1)
-               drawpic(reticle_pos, "textures/reticle_nex", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_nex"), DRAWFLAG_NORMAL);
+       {
+               precache_pic("textures/reticle_nex");
+               if(zoom_type == 1)
+                       drawpic(reticle_pos, "textures/reticle_nex", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_nex"), DRAWFLAG_NORMAL);
+       }
 
        // Draw the mouse cursor
        // NOTE: drawpic must happen after R_RenderScene for some reason