1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-10-06 17:54:03 -04:00

Add a space to the "Player %d: " string for consistency

This commit is contained in:
John Zaitseff 2011-08-16 21:14:56 +10:00
parent 6c1c272780
commit 0aa74d1f46

View File

@ -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;