]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Removed an unused variable in gl_draw.c (Forest, could you double check this one...
authormolivier <molivier@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 3 Oct 2002 06:36:54 +0000 (06:36 +0000)
committermolivier <molivier@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 3 Oct 2002 06:36:54 +0000 (06:36 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2491 d7cf8633-e32d-0410-b094-e92efae38249

gl_draw.c
vid_null.c

index 717f0b8983874b90ff0cb43cb08c519e2714737d..7fc4db6316f301e747b6c52873c4234d0ef2e6d2 100644 (file)
--- a/gl_draw.c
+++ b/gl_draw.c
@@ -370,7 +370,7 @@ int quadelements[768];
 void R_DrawQueue(void)
 {
        int pos, num, chartexnum, overbright, texnum, additive, batch;
-       float x, y, w, h, s, t, u, v, cr, cg, cb, ca, *av, *at, *ac;
+       float x, y, w, h, s, t, u, v, cr, cg, cb, ca, *av, *at;
        cachepic_t *pic;
        drawqueue_t *dq;
        char *str, *currentpic;
@@ -498,7 +498,6 @@ void R_DrawQueue(void)
                                        av[ 4] = x+w;av[ 5] = y  ;av[ 6] = 10;
                                        av[ 8] = x+w;av[ 9] = y+h;av[10] = 10;
                                        av[12] = x  ;av[13] = y+h;av[14] = 10;
-                                       ac += 16;
                                        at += 8;
                                        av += 16;
                                        batchcount++;
index 3492943db153acb4425f53fd9586f3bd439e9653..2b232f566f1468c0e7659c90c69c88cbbd215e55 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
 
 #include <signal.h>
-#include <dlfcn.h>
 #include "quakedef.h"
 
 int cl_available = false;