summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/kills.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-06-08 21:40:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-06-08 21:40:09 +0200
commit13c6cab02a22a461521f9261bb9bbaa8ce51c4b9 (patch)
treeddeaa27d7627cd882b58423da9a2e5b184a1427f /crawl-ref/source/kills.h
parenta7e9368205d063d909ea949a912e846997a7636f (diff)
downloadcrawl-ref-13c6cab02a22a461521f9261bb9bbaa8ce51c4b9.tar.gz
crawl-ref-13c6cab02a22a461521f9261bb9bbaa8ce51c4b9.zip
Bring sanity to enums by making them diffable/patchable.
Diffstat (limited to 'crawl-ref/source/kills.h')
-rw-r--r--crawl-ref/source/kills.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/kills.h b/crawl-ref/source/kills.h
index 812364e4a7..49feb014c3 100644
--- a/crawl-ref/source/kills.h
+++ b/crawl-ref/source/kills.h
@@ -32,7 +32,7 @@ struct kill_monster_desc
enum name_modifier
{
M_NORMAL, M_ZOMBIE, M_SKELETON, M_SIMULACRUM, M_SPECTRE,
- M_SHAPESHIFTER // A shapeshifter pretending to be 'monnum'
+ M_SHAPESHIFTER, // A shapeshifter pretending to be 'monnum'
};
int monnum; // Number of the beast
@@ -191,7 +191,7 @@ enum KILL_DUMP_OPTIONS
{
KDO_NO_PLACES, // Don't dump places at all
KDO_ONE_PLACE, // Show places only for single kills and uniques.
- KDO_ALL_PLACES // Show all available place information
+ KDO_ALL_PLACES, // Show all available place information
};
#endif