summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/losglobal.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/losglobal.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/losglobal.h')
-rw-r--r--crawl-ref/source/losglobal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/losglobal.h b/crawl-ref/source/losglobal.h
index 653597160e..f861fc4f90 100644
--- a/crawl-ref/source/losglobal.h
+++ b/crawl-ref/source/losglobal.h
@@ -6,7 +6,7 @@ enum los_type
LOS_DEFAULT = (1 << 0),
LOS_NO_TRANS = (1 << 1),
LOS_FLAG_INVALID = (1 << 7), // internal use
- LOS_ARENA = LOS_FLAG_INVALID // hack
+ LOS_ARENA = LOS_FLAG_INVALID, // hack
};
void invalidate_los_around(const coord_def& p);