OSDN Git Service

In the English version, the displayed player level in the main window wasn't aligned...
authorEric Branlund <ebranlund@fastmail.com>
Thu, 5 Sep 2019 21:10:24 +0000 (14:10 -0700)
committerEric Branlund <ebranlund@fastmail.com>
Thu, 5 Sep 2019 21:10:24 +0000 (14:10 -0700)
src/view-mainwindow.c

index dcf7b2e..4a6cdf1 100644 (file)
@@ -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)
        {