OSDN Git Service

Mogami氏より#ifdef JPの使い方を変えないように指示があり, この部分の使
authornothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Fri, 5 Sep 2003 14:31:50 +0000 (14:31 +0000)
committernothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Fri, 5 Sep 2003 14:31:50 +0000 (14:31 +0000)
い方を戻した.

src/cmd3.c

index 7a61278..a9102d2 100644 (file)
@@ -485,19 +485,25 @@ msg_print("
        /* Where is the item now */
        switch (slot)
        {
-#ifdef JP
        case INVEN_RARM:
                if ((o_ptr->tval != TV_SHIELD) && (o_ptr->tval != TV_CAPTURE) && (o_ptr->tval != TV_CARD) && (empty_hands(FALSE) & EMPTY_HAND_LARM) && ((o_ptr->weight > 99) || (o_ptr->tval == TV_POLEARM)) && (!p_ptr->riding || (p_ptr->pet_extra_flags & PF_RYOUTE)))
+#ifdef JP
                        act = "¤òξ¼ê¤Ç¹½¤¨¤¿";
+#else
+                       act = "You are wielding";
+#endif
                else
+#ifdef JP
                        act = (left_hander ? "¤òº¸¼ê¤ËÁõÈ÷¤·¤¿" : "¤ò±¦¼ê¤ËÁõÈ÷¤·¤¿");
+#else
+                       act = "You are wielding";
+#endif
                break;
 
        case INVEN_LARM:
+#ifdef JP
                act = (left_hander ? "¤ò±¦¼ê¤ËÁõÈ÷¤·¤¿" : "¤òº¸¼ê¤ËÁõÈ÷¤·¤¿");
 #else
-       case INVEN_RARM:
-       case INVEN_LARM:
                act = "You are wielding";
 #endif
                break;