X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=args.c;h=5056239aed206fcc5fb828474d74c28486f63678;hp=4785bc6a622bb86e13dfa3e139e1731d33dbfdd5;hb=HEAD;hpb=1a84371a75e17e8a7e8b0a95e1f0c163de4bb7ce diff --git a/args.c b/args.c index 4785bc6..81a9b16 100644 --- a/args.c +++ b/args.c @@ -2,6 +2,7 @@ #include #include #include "args.h" +#include #include "vorconfig.h" // Look and Feel @@ -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;