summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mgen_data.h
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2010-10-03 19:35:52 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2010-10-03 19:37:10 -0500
commitd62579eda4b5daf7947426d6e72f127e5f4f8951 (patch)
tree364a1da2de9ba9e1fa6ddcb0afab63c587b22908 /crawl-ref/source/mgen_data.h
parent4f45919f3dedc18a2aed6a22d152ceac6d1f6b85 (diff)
downloadcrawl-ref-d62579eda4b5daf7947426d6e72f127e5f4f8951.tar.gz
crawl-ref-d62579eda4b5daf7947426d6e72f127e5f4f8951.zip
Revert "Fix type mismatch in mgen_data::hostile_at()."
This reverts commit 4f45919f3dedc18a2aed6a22d152ceac6d1f6b85. There's actually no mismatch (oops); monflags holds MG_-type flags, so it's only 32-bit.
Diffstat (limited to 'crawl-ref/source/mgen_data.h')
-rw-r--r--crawl-ref/source/mgen_data.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mgen_data.h b/crawl-ref/source/mgen_data.h
index 25d75185dc..aa47ebbab0 100644
--- a/crawl-ref/source/mgen_data.h
+++ b/crawl-ref/source/mgen_data.h
@@ -170,7 +170,7 @@ struct mgen_data
int abj = 0,
int st = 0,
const coord_def &p = coord_def(-1, -1),
- uint64_t monflags = 0,
+ unsigned monflags = 0,
god_type ngod = GOD_NO_GOD,
monster_type base = MONS_NO_MONSTER)