summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/travel.h')
-rw-r--r--crawl-ref/source/travel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h
index 8fad985664..3ed894ecee 100644
--- a/crawl-ref/source/travel.h
+++ b/crawl-ref/source/travel.h
@@ -269,7 +269,7 @@ class explore_discoveries
public:
explore_discoveries();
- void found_feature(const coord_def &pos, int grid);
+ void found_feature(const coord_def &pos, dungeon_feature_type grid);
void found_item(const coord_def &pos, const item_def &item);
// Reports discoveries and prompts the player to stop (if necessary).
@@ -277,7 +277,7 @@ public:
private:
template <class C> void say_any(const C &coll, const char *stub) const;
- std::string cleaned_feature_description(int feature) const;
+ std::string cleaned_feature_description(dungeon_feature_type feature) const;
void add_item(const item_def &item);
private: