git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9652
d7cf8633-e32d-0410-b094-
e92efae38249
return NULL;
}
-static inline float snap_to_pixel_x(float x, float roundUpAt)
+static float snap_to_pixel_x(float x, float roundUpAt)
{
float pixelpos = x * vid.width / vid_conwidth.value;
int snap = (int) pixelpos;
*/
}
-static inline float snap_to_pixel_y(float y, float roundUpAt)
+static float snap_to_pixel_y(float y, float roundUpAt)
{
float pixelpos = y * vid.height / vid_conheight.value;
int snap = (int) pixelpos;