OSDN Git Service

Aligned English level display with items below it in the main window.
authorEric Branlund <ebranlund@fastmail.com>
Thu, 6 Feb 2020 08:24:26 +0000 (00:24 -0800)
committerdeskull <deskull@users.sourceforge.jp>
Sun, 9 Feb 2020 13:37:36 +0000 (22:37 +0900)
src/view-mainwindow.c

index 0a96e23..6466b76 100644 (file)
@@ -777,7 +777,7 @@ static void print_title(player_type *creature_ptr)
 static void print_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);