From b128d04ef3b3b8df97baa8390bfcdfceabae2600 Mon Sep 17 00:00:00 2001 From: Hourier Date: Wed, 16 Dec 2020 18:28:44 +0900 Subject: [PATCH] [Fix] #40940 Resolved the issue that a parenthesis was missing --- src/cmd-item/cmd-equipment.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd-item/cmd-equipment.c b/src/cmd-item/cmd-equipment.c index b384f1870..a10d3e7d2 100644 --- a/src/cmd-item/cmd-equipment.c +++ b/src/cmd-item/cmd-equipment.c @@ -61,7 +61,7 @@ void do_cmd_equip(player_type *creature_ptr) sprintf(out_val, "装備: 合計 %3d.%1d kg (限界の%ld%%) コマンド: ", (int)lbtokg1(weight), (int)lbtokg2(weight), (long int)((weight * 100) / weight_lim)); #else sprintf(out_val, "Equipment: carrying %d.%d pounds (%ld%% of capacity). Command: ", (int)(weight / 10), (int)(weight % 10), - (long int)((weight * 100) / weight_lim); + (long int)((weight * 100) / weight_lim)); #endif prt(out_val, 0, 0); -- 2.11.0