r_part.c (R_ReadPointFile_f): silence pesky compiler warnings

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1441 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2017-07-28 20:00:32 +00:00
parent 3cf6946ebd
commit e2d1800b12

View file

@ -288,6 +288,7 @@ void R_ReadPointFile_f (void)
Con_Printf ("Reading %s...\n", name);
c = 0;
org[0] = org[1] = org[2] = 0; // silence pesky compiler warnings
for ( ;; )
{
r = fscanf (f,"%f %f %f\n", &org[0], &org[1], &org[2]);