From 3a1e89404b9af3930889465c23457c54499935d3 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Fri, 2 Jul 2010 10:22:14 +0200 Subject: [PATCH] move reticle from textures/ to gfx/ --- {textures => gfx}/reticle_nex.tga | Bin {textures => gfx}/reticle_normal.tga | Bin qcsrc/client/View.qc | 8 ++++---- 3 files changed, 4 insertions(+), 4 deletions(-) rename {textures => gfx}/reticle_nex.tga (100%) rename {textures => gfx}/reticle_normal.tga (100%) diff --git a/textures/reticle_nex.tga b/gfx/reticle_nex.tga similarity index 100% rename from textures/reticle_nex.tga rename to gfx/reticle_nex.tga diff --git a/textures/reticle_normal.tga b/gfx/reticle_normal.tga similarity index 100% rename from textures/reticle_normal.tga rename to gfx/reticle_normal.tga diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index ed1f303e2..79354bc8a 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -580,15 +580,15 @@ void CSQC_UpdateView(float w, float h) if(cvar("cl_reticle_item_normal")) { - precache_pic("textures/reticle_normal"); + precache_pic("gfx/reticle_normal"); if(reticle_type == 1 && current_zoomfraction) - drawpic(reticle_pos, "textures/reticle_normal", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_item_normal"), DRAWFLAG_NORMAL); + drawpic(reticle_pos, "gfx/reticle_normal", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_item_normal"), DRAWFLAG_NORMAL); } if(cvar("cl_reticle_item_nex")) { - precache_pic("textures/reticle_nex"); + precache_pic("gfx/reticle_nex"); if(reticle_type == 2 && current_zoomfraction) - drawpic(reticle_pos, "textures/reticle_nex", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_item_nex"), DRAWFLAG_NORMAL); + drawpic(reticle_pos, "gfx/reticle_nex", reticle_size, '1 1 1', current_zoomfraction * cvar("cl_reticle_item_nex"), DRAWFLAG_NORMAL); } // Draw the mouse cursor -- 2.39.2