X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=args.c;h=5056239aed206fcc5fb828474d74c28486f63678;hp=4d629952332a0375e30f5070050a6ed401af79ea;hb=HEAD;hpb=19f8eb7a835a2b084010a8deb8f3d200f995559d diff --git a/args.c b/args.c index 4d62995..81a9b16 100644 --- a/args.c +++ b/args.c @@ -2,7 +2,8 @@ #include #include #include "args.h" -#include "config.h" +#include +#include "vorconfig.h" // Look and Feel int opt_fullscreen; @@ -20,7 +21,7 @@ show_help(void) puts(" -V, --version Print program version"); puts(" -?, --help Give this help list"); putchar('\n'); - puts("Report bugs at http://jasonwoof.com/contact.html"); + puts("Report bugs at https://jasonwoof.com/contact"); } int @@ -30,7 +31,7 @@ short_opt(char c, char *arg) case 'f': opt_fullscreen = 1; break; case 's': opt_sound = 0; break; case 'V': - printf("Variations on Rockdodger %s\n", VERSION); + printf("Variations on Rockdodger %s\n", PACKAGE_VERSION); exit(0); case '?': case 'h': return 0;