mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-05-30 00:40:43 +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)
|
||||
r_maxsurfsseen = surface_p - surfaces;
|
||||
|
||||
Con_Printf ("Used %d of %d surfs; %d max\n", surface_p - surfaces,
|
||||
surf_max - surfaces, r_maxsurfsseen);
|
||||
Con_Printf ("Used %d of %d surfs; %d max\n",
|
||||
(int) (surface_p - surfaces),
|
||||
(int) (surf_max - surfaces),
|
||||
r_maxsurfsseen);
|
||||
}
|
||||
|
||||
if (r_numedges->value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue