OSDN Git Service

[Fix] #39551 英語版のレベル表示位置ズレを修正。 / Fix English level display alignment.
authordeskull <deskull@users.sourceforge.jp>
Sat, 21 Dec 2019 10:27:36 +0000 (19:27 +0900)
committerdeskull <deskull@users.sourceforge.jp>
Sat, 21 Dec 2019 10:27:36 +0000 (19:27 +0900)
src/view-mainwindow.c

index 7527be3..e112581 100644 (file)
@@ -779,9 +779,7 @@ static void prt_title(player_type *creature_ptr)
 static void prt_level(player_type *creature_ptr)
 {
        char tmp[32];
-
-       sprintf(tmp, _("%5d", "%6d"), creature_ptr->lev);
-
+       sprintf(tmp, "%5d", creature_ptr->lev);
        if (creature_ptr->lev >= creature_ptr->max_plv)
        {
                put_str(_("レベル ", "LEVEL "), ROW_LEVEL, 0);