From a064278450e1daad1dfd4fee036d5d97ecd133ee Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 17 May 2017 19:57:35 +0000 Subject: Fixed compilation warnings and Makefile for FreeBSD. --- xd.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'xd.c') diff --git a/xd.c b/xd.c index c64251c..fe4dcc7 100644 --- a/xd.c +++ b/xd.c @@ -30,6 +30,9 @@ static const char id[]="$Id$"; #include #include #include +#include + +#include #include #include @@ -286,7 +289,7 @@ static unsigned long blue; static int mouse_x; static int mouse_y; -static int mouse_b; +static unsigned int mouse_b; static double sintab[3600]; static double costab[3600]; @@ -1830,8 +1833,8 @@ static void TunnelDemo(void) for(f=0;fx[f]=(RND(radius>>1)+radius>>1)*si[f]; - new->y[f]=(RND(radius>>1)+radius>>1)*co[f]; + new->x[f]=(RND(radius/2)+radius/2)*si[f]; + new->y[f]=(RND(radius/2)+radius/2)*co[f]; } new->r=radius; -- cgit v1.2.3