X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=args.c;h=f1946900269009ec28b1807677bef28b3b4d1c6f;hp=9c4c62b92e8c562d597dcf566c7400b6839f6e18;hb=eb0732dc23646473853da1e37311f93052b8251b;hpb=87a3196343bd1694760a77f560049548f745cb65 diff --git a/args.c b/args.c index 9c4c62b..f194690 100644 --- a/args.c +++ b/args.c @@ -4,11 +4,6 @@ #include "args.h" #include "config.h" -// Gameplay Variations -float opt_bounciness; -float opt_gamespeed; -float opt_max_lead; - // Look and Feel int opt_fullscreen; int opt_sound; @@ -73,12 +68,6 @@ parse_long_opt(const char *s, char *arg) void init_opts(void) { - // Gameplay Variations - opt_bounciness = 0.50; // lose 50% when you hit the screen edge. - opt_gamespeed = 1.00; // Run game at full speed. - opt_max_lead = 1.00*XSIZE; // you can get 1 screen ahead. - - // Look and Feel opt_fullscreen = 0; opt_sound = 1; }