From: Jason Woofenden Date: Sun, 10 Jul 2005 20:19:27 +0000 (+0000) Subject: raised max for -g to 200 X-Git-Tag: 0.4~44 X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=commitdiff_plain;h=0d91ceac599dbeb19919bac2a1aa3f85ce7d4600 raised max for -g to 200 --- diff --git a/Makefile b/Makefile index 01499e2..f8f4dd7 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,11 @@ vor: $(objects) include gfx.mk +tags: *.c *.h + exuberant-ctags *.c *.h /usr/include/SDL/* + clean: program-clean + rm -f tags maintainer-clean: program-clean data-clean diff --git a/args.c b/args.c index 94ad057..a9ff69a 100644 --- a/args.c +++ b/args.c @@ -67,7 +67,7 @@ parse_opt(int key, char *arg, struct argp_state *state) argp_state_help(state, stderr, ARGP_HELP_STD_HELP); return EINVAL; } - if(i < 0) i = 0; else if(i > 100) i = 100; + if(i < 0) i = 0; else if(i > 200) i = 100; opt_gamespeed = (float)i / 100; break; case 'l': if(!sscanf(arg, "%f", &opt_max_lead)) {