mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-06-01 09:42:11 +00:00
R_SetupFrame() - cast parameters to Con_Printf() to int to avoid warnings
under AIX
This commit is contained in:
parent
86a35efba3
commit
4ad32989a5
1 changed files with 4 additions and 2 deletions
|
@ -483,8 +483,10 @@ void R_SetupFrame (void)
|
||||||
if ((surface_p - surfaces) > r_maxsurfsseen)
|
if ((surface_p - surfaces) > r_maxsurfsseen)
|
||||||
r_maxsurfsseen = surface_p - surfaces;
|
r_maxsurfsseen = surface_p - surfaces;
|
||||||
|
|
||||||
Con_Printf ("Used %d of %d surfs; %d max\n", surface_p - surfaces,
|
Con_Printf ("Used %d of %d surfs; %d max\n",
|
||||||
surf_max - surfaces, r_maxsurfsseen);
|
(int) (surface_p - surfaces),
|
||||||
|
(int) (surf_max - surfaces),
|
||||||
|
r_maxsurfsseen);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (r_numedges->value)
|
if (r_numedges->value)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue