OSDN Git Service

我が家で(Page xx)から(Page x)に移るときに最後のコッカがゴミになって残ってたのを修正.
authorhenkma <henkma@0568b783-4c39-0410-ac80-bf13821ea2a2>
Thu, 27 Jun 2002 11:42:45 +0000 (11:42 +0000)
committerhenkma <henkma@0568b783-4c39-0410-ac80-bf13821ea2a2>
Thu, 27 Jun 2002 11:42:45 +0000 (11:42 +0000)
src/store.c

index b2f85f7..445619c 100644 (file)
@@ -2213,10 +2213,11 @@ static void display_inventory(void)
 
 
                /* Indicate the "current page" */
+               /* Trailing spaces are to display (Page xx) and (Page x) */
 #ifdef JP
-               put_str(format("(%d¥Ú¡¼¥¸)", store_top/12 + 1), 5, 20);
+               put_str(format("(%d¥Ú¡¼¥¸)  ", store_top/12 + 1), 5, 20);
 #else
-               put_str(format("(Page %d)", store_top/12 + 1), 5, 20);
+               put_str(format("(Page %d)  ", store_top/12 + 1), 5, 20);
 #endif
 
        }