summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-03 23:09:13 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-04 08:45:42 +0100
commitaa8110a9204f7f9a1c50d98f3ada4d8c6e3b405e (patch)
tree658b9529f3fe1c0424fb8058a46f78fc533a3922 /crawl-ref
parent2edcff5f957d507319d1f848edde5f7e810c5967 (diff)
downloadcrawl-ref-aa8110a9204f7f9a1c50d98f3ada4d8c6e3b405e.tar.gz
crawl-ref-aa8110a9204f7f9a1c50d98f3ada4d8c6e3b405e.zip
Rename map_feature() from mapdef.h to map_feature_at.
This was causing conflicts with enum map_feature (not sure why this didn't show up earlier).
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/dungeon.cc4
-rw-r--r--crawl-ref/source/mapdef.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index ece327f7b3..5c0021d3e2 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -4833,7 +4833,7 @@ static bool _dgn_place_one_monster( const vault_placement &place,
}
// Grr, keep this in sync with vault_grid.
-dungeon_feature_type map_feature(map_def *map, const coord_def &c, int rawfeat)
+dungeon_feature_type map_feature_at(map_def *map, const coord_def &c, int rawfeat)
{
if (rawfeat == -1)
rawfeat = map->glyph_at(c);
@@ -4856,7 +4856,7 @@ dungeon_feature_type map_feature(map_def *map, const coord_def &c, int rawfeat)
else if (f.feat >= 0)
return static_cast<dungeon_feature_type>(f.feat);
else if (f.glyph >= 0)
- return map_feature(NULL, c, rawfeat);
+ return map_feature_at(NULL, c, rawfeat);
else if (f.shop >= 0)
return (DNGN_ENTER_SHOP);
diff --git a/crawl-ref/source/mapdef.h b/crawl-ref/source/mapdef.h
index de55bd511c..d08418451c 100644
--- a/crawl-ref/source/mapdef.h
+++ b/crawl-ref/source/mapdef.h
@@ -632,7 +632,7 @@ struct dlua_set_map
};
class map_def;
-dungeon_feature_type map_feature(map_def *map, const coord_def &c, int rawfeat);
+dungeon_feature_type map_feature_at(map_def *map, const coord_def &c, int rawfeat);
struct map_file_place
{
@@ -805,7 +805,7 @@ public:
// feature slots, but that's fine by us.
dungeon_feature_type operator () (const coord_def &c) const
{
- return (map_feature(&map, c, -1));
+ return (map_feature_at(&map, c, -1));
}
};