From e5fd2692b9a74fec5f6535d6348e3e1db58328cb Mon Sep 17 00:00:00 2001 From: backwardsEric Date: Thu, 5 Sep 2019 14:10:24 -0700 Subject: [PATCH] In the English version, the displayed player level in the main window wasn't aligned with the stats below it. --- src/view-mainwindow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view-mainwindow.c b/src/view-mainwindow.c index dcf7b2e6..4a6cdf1a 100644 --- a/src/view-mainwindow.c +++ b/src/view-mainwindow.c @@ -738,7 +738,7 @@ static void prt_level(void) { char tmp[32]; - sprintf(tmp, _("%5d", "%6d"), p_ptr->lev); + sprintf(tmp, "%5d", p_ptr->lev); if (p_ptr->lev >= p_ptr->max_plv) { -- 2.20.1 (Apple Git-117)