From 98a71ca6aa541dcb821daf509c9fa93ea51cd20d Mon Sep 17 00:00:00 2001 From: molivier Date: Wed, 21 Jul 2004 12:46:00 +0000 Subject: [PATCH] Fixed a warning when compiling with GCC (missing type) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4280 d7cf8633-e32d-0410-b094-e92efae38249 --- gl_textures.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gl_textures.c b/gl_textures.c index 1ada32e4..b07078ee 100644 --- a/gl_textures.c +++ b/gl_textures.c @@ -530,7 +530,7 @@ void R_Textures_Init (void) void R_Textures_Frame (void) { - static old_aniso = 0; + static int old_aniso = 0; // could do procedural texture animation here, if we keep track of which // textures were accessed this frame... -- 2.39.2