From e20d7234e05c2ed1f243f76dcae42718914fdc39 Mon Sep 17 00:00:00 2001 From: backwardsEric Date: Wed, 4 Sep 2019 18:43:13 -0700 Subject: [PATCH] In English version, a store's page indicator cuts off the last character of "Item Description". --- src/store.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store.c b/src/store.c index 2356d9b9..8dbd68a1 100644 --- a/src/store.c +++ b/src/store.c @@ -3691,7 +3691,7 @@ static void display_inventory(void) #ifdef JP put_str(" ", 5, 20); #else - put_str(" ", 5, 20); + put_str(" ", 5, 22); #endif @@ -3703,7 +3703,7 @@ static void display_inventory(void) /* Indicate the "current page" */ /* Trailing spaces are to display (Page xx) and (Page x) */ - put_str(format(_("(%dページ) ", "(Page %d) "), store_top/store_bottom + 1), 5, 20); + put_str(format(_("(%dページ) ", "(Page %d) "), store_top/store_bottom + 1), 5, _(20, 22)); } if (cur_store_num == STORE_HOME || cur_store_num == STORE_MUSEUM) -- 2.20.1 (Apple Git-117)