From 46cf1b673efc9fb9cb84c70a86024d76762c3444 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Sat, 6 Jan 2024 22:20:44 -0500 Subject: [PATCH] Remove some stray C++-style // comments. A couple of these slipped in by mistake. --- src/curses.c | 4 ++-- src/motif.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/curses.c b/src/curses.c index f4e70d2..dc870de 100644 --- a/src/curses.c +++ b/src/curses.c @@ -1,6 +1,6 @@ /* * Curses UI for slide puzzle game - * Copyright © 2022-2023 Nick Bowler + * Copyright © 2022-2024 Nick Bowler * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -32,7 +32,7 @@ #include "cursesopt.h" enum { - GAME_YPOS = 1 // top row of game and goal areas. + GAME_YPOS = 1 /* top row of game and goal areas. */ }; static const char *progname = "rrace"; diff --git a/src/motif.c b/src/motif.c index 8b0fa41..d1bc980 100644 --- a/src/motif.c +++ b/src/motif.c @@ -1,6 +1,6 @@ /* * X11 GUI for slide puzzle game - * Copyright © 2022-2023 Nick Bowler + * Copyright © 2022-2024 Nick Bowler * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -44,7 +44,7 @@ static const char *progname = PROGNAME; static char * const default_resources[] = { "*title: RRace", - "*game.height: 371", // 365 + 2*shadowThickness + "*game.height: 371", /* 365 + 2*shadowThickness */ "*game.width: 498", "*game.XmFrame.shadowThickness: 3", -- 2.43.2