From 683027f82849ca96cf424ffff699ab57e119f051 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Wed, 9 Mar 2022 21:29:57 -0500 Subject: [PATCH] Set default program title. --- src/motif.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/motif.c b/src/motif.c index 75a985b..2d4fe94 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", @@ -105,7 +106,7 @@ static Widget early_setup(XtAppContext *app, int argc, char **argv) shell = XtOpenApplication(app, PROGNAME, 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) { -- 2.43.2