X-Git-Url: http://git.draconx.ca/gitweb/rrace.git/blobdiff_plain/c871e6fab6382d4a46ec0c410386041a8aadef65..8e6b9fd79ca87c131d33d74d40f68df9696c7f5c:/src/motif.c diff --git a/src/motif.c b/src/motif.c index 75a985b..be5900d 100644 --- a/src/motif.c +++ b/src/motif.c @@ -33,6 +33,7 @@ static const char *progname = PROGNAME; static const struct option lopts[] = { LOPTS_INITIALIZER, {0} }; static char * const default_resources[] = { + "*title: RRace", "*game.height: 371", // 365 + 2*shadowThickness "*game.width: 498", @@ -67,6 +68,7 @@ static void print_usage(FILE *f) static void print_help(void) { + struct lopt_help help = {0}; const struct option *opt; print_usage(stdout); @@ -74,8 +76,6 @@ static void print_help(void) putchar('\n'); puts("Options:"); for (opt = lopts; opt->name; opt++) { - struct lopt_help help; - if (!lopt_get_help(opt, &help)) continue; help_print_option(opt, help.arg, help.desc, 20); @@ -103,9 +103,9 @@ static Widget early_setup(XtAppContext *app, int argc, char **argv) } } - shell = XtOpenApplication(app, PROGNAME, NULL, 0, + shell = XtOpenApplication(app, PACKAGE_TARNAME, NULL, 0, &argc, argv, (String *)default_resources, - sessionShellWidgetClass, NULL, 0); + sessionShellWidgetClass, NULL, 0); opterr = optind = 1; while ((opt = getopt_long_only(argc, argv, "", lopts, NULL)) != -1) {