OSDN Git Service

[Refactor] #1172 Changed '(TRUE)', 'TRUE;' and 'FALSE;' to '(true)', 'true;' and...
[hengbandforosx/hengbandosx.git] / src / player-info / avatar.cpp
index 645b83a..c0b89c8 100644 (file)
@@ -59,16 +59,16 @@ bool compare_virtue(player_type *creature_ptr, int type, int num, int tekitou)
     switch (tekitou) {
     case VIRTUE_LARGE:
         if (vir > num)
-            return TRUE;
+            return true;
         else
-            return FALSE;
+            return false;
     case VIRTUE_SMALL:
         if (vir < num)
-            return TRUE;
+            return true;
         else
-            return FALSE;
+            return false;
     default:
-        return FALSE;
+        return false;
     }
 }