summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-util.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-06-04 03:11:45 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-06-04 14:29:26 +0200
commitab95531c3457957e33633f72cfbe6b0f7fa60b62 (patch)
tree08376e8e18d45ef9779694fb8eddde6d6a793a3d /crawl-ref/source/spl-util.h
parent662a84ac03691a43f36464e45cd6d6f88ba101fb (diff)
downloadcrawl-ref-ab95531c3457957e33633f72cfbe6b0f7fa60b62.tar.gz
crawl-ref-ab95531c3457957e33633f72cfbe6b0f7fa60b62.zip
Purge some comments about "new" stuff.
Diffstat (limited to 'crawl-ref/source/spl-util.h')
-rw-r--r--crawl-ref/source/spl-util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/spl-util.h b/crawl-ref/source/spl-util.h
index b8f4fc208e..b73370ddeb 100644
--- a/crawl-ref/source/spl-util.h
+++ b/crawl-ref/source/spl-util.h
@@ -12,8 +12,8 @@
enum spschool_flag_type
{
- SPTYP_NONE = 0, // "0" is reserved for no type at all {dlb}
- SPTYP_CONJURATION = 1<<0, // was 11, but only for old typematch routine {dlb}
+ SPTYP_NONE = 0,
+ SPTYP_CONJURATION = 1<<0,
SPTYP_HEXES = 1<<1,
SPTYP_CHARMS = 1<<2,
SPTYP_FIRE = 1<<3,
@@ -26,7 +26,7 @@ enum spschool_flag_type
SPTYP_POISON = 1<<10,
SPTYP_EARTH = 1<<11,
SPTYP_AIR = 1<<12,
- SPTYP_HOLY = 1<<13, //jmf: moved to accommodate "random" miscast f/x
+ SPTYP_HOLY = 1<<13,
SPTYP_LAST_EXPONENT = 13, //jmf: ``NUM_SPELL_TYPES'' kinda useless
NUM_SPELL_TYPES = 15,
SPTYP_RANDOM = 1<<14,