OSDN Git Service

[Fix] #40940 Resolved the issue that a parenthesis was missing
authorHourier <hourier@users.sourceforge.jp>
Wed, 16 Dec 2020 09:28:44 +0000 (18:28 +0900)
committerHourier <hourier@users.sourceforge.jp>
Wed, 16 Dec 2020 09:32:08 +0000 (18:32 +0900)
src/cmd-item/cmd-equipment.c

index b384f18..a10d3e7 100644 (file)
@@ -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);