summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 48a85aa4c2..80046dc70b 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -1455,7 +1455,7 @@ enum item_status_flag_type // per item flags: ie. ident status, cursed status
enum item_description_type
{
- IDESC_WANDS,
+ IDESC_WANDS = 0,
IDESC_POTIONS,
IDESC_SCROLLS, // special field (like the others)
IDESC_RINGS,
@@ -3613,7 +3613,7 @@ enum unarmed_attack_type
enum undead_state_type // you.is_undead
{
- US_ALIVE, // 0
+ US_ALIVE = 0,
US_HUNGRY_DEAD,
US_UNDEAD
};