X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2Ffiles.c;h=0a4616d4d000b245e02f6cde93b1d907fa08fd0d;hb=0cf2dd3eb6f1dea20ea648a0bd236f4294666db1;hp=34ea615d497324030d96e628d887b8838f2ca092;hpb=28c645f41c42c9ef2eff0479311ac7a2f69a2a76;p=hengband%2Fhengband.git diff --git a/src/files.c b/src/files.c index 34ea615d4..0a4616d4d 100644 --- a/src/files.c +++ b/src/files.c @@ -6181,7 +6181,7 @@ void show_info(player_type *creature_ptr) if (creature_ptr->equip_cnt) { Term_clear(); - (void)show_equip(creature_ptr, 0, USE_FULL, 0); + (void)show_equipment(creature_ptr, 0, USE_FULL, 0); prt(_("装備していたアイテム: -続く-", "You are using: -more-"), 0, 0); if (inkey() == ESCAPE) return; @@ -6191,7 +6191,7 @@ void show_info(player_type *creature_ptr) if (creature_ptr->inven_cnt) { Term_clear(); - (void)show_inven(creature_ptr, 0, USE_FULL, 0); + (void)show_inventory(creature_ptr, 0, USE_FULL, 0); prt(_("持っていたアイテム: -続く-", "You are carrying: -more-"), 0, 0); if (inkey() == ESCAPE) return;