mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
glsl_main.c: initialize t[] to silence compiler warning.
This commit is contained in:
parent
82adc67a67
commit
49453b690f
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ R_DrawViewModel (void)
|
|||
VISIBLE void
|
||||
R_RenderView (void)
|
||||
{
|
||||
double t[10];
|
||||
double t[10] = {};
|
||||
int speeds = r_speeds->int_val;
|
||||
|
||||
if (speeds)
|
||||
|
|
Loading…
Reference in a new issue