From 0aa74d1f46a9ac7b44004823627b8cb1e9f6032b Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Tue, 16 Aug 2011 21:14:56 +1000 Subject: [PATCH] Add a space to the "Player %d: " string for consistency --- src/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index 4d3099a..f9853f5 100644 --- a/src/game.c +++ b/src/game.c @@ -410,10 +410,10 @@ void ask_player_names (void) player[i].name = NULL; entered[i] = false; left(curwin, i + 3, 2, attr_normal, 0, 0, 1, - _("Player %d:"), i + 1); + _("Player %d: "), i + 1); } - int x = getcurx(curwin) + 1; + int x = getcurx(curwin); int w = getmaxx(curwin) - x - 2; cur = 0;