JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
bump version to 0.5.8
[vor.git] / args.c
diff --git a/args.c b/args.c
index 4d62995..81a9b16 100644 (file)
--- a/args.c
+++ b/args.c
@@ -2,7 +2,8 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include "args.h"
-#include "config.h"
+#include <config.h>
+#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;