From: Hourier Date: Wed, 16 Dec 2020 09:28:44 +0000 (+0900) Subject: [Fix] #40940 Resolved the issue that a parenthesis was missing X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b128d04ef3b3b8df97baa8390bfcdfceabae2600;p=hengband%2Fhengband.git [Fix] #40940 Resolved the issue that a parenthesis was missing --- 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);