From e2ce56144e49f119e3b138904b28482c874994e8 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 20 Aug 2006 10:50:23 +0000 Subject: (svn r5967) -Change: use right alignment for the year in the player's balance window instead of centering (about) 'string width' / 2 from the right edge --- player_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player_gui.c') diff --git a/player_gui.c b/player_gui.c index 1c106e566..9f5aea362 100644 --- a/player_gui.c +++ b/player_gui.c @@ -48,7 +48,7 @@ static void DrawPlayerEconomyStats(const Player *p, byte mode) do { if (year >= BASE_YEAR + p->inaugurated_year) { SetDParam(0, year); - DrawStringCenterUnderline(x-17, 15, STR_7010, 0); + DrawStringRightAlignedUnderline(x, 15, STR_7010, 0); sum = 0; for (i = 0; i != 13; i++) { /* draw one row in the price column */ -- cgit v1.2.3-54-g00ecf