summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/maps.h
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2010-07-03 23:53:19 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2010-07-04 00:06:06 +0530
commit627fa5a1401f74efdd2632ed6872a1fe2075cde7 (patch)
tree919865e6aa69c080482302a2cea8bbd3cb8127f5 /crawl-ref/source/maps.h
parent46c3bdfbb600940b5de1c4a9e9750f247568facf (diff)
downloadcrawl-ref-627fa5a1401f74efdd2632ed6872a1fe2075cde7.tar.gz
crawl-ref-627fa5a1401f74efdd2632ed6872a1fe2075cde7.zip
Allow selecting Sprint maps by map desc where available (dpeg).
Needs work; the menu column size is probably too small for Sprint map names.
Diffstat (limited to 'crawl-ref/source/maps.h')
-rw-r--r--crawl-ref/source/maps.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/maps.h b/crawl-ref/source/maps.h
index 92427302a4..923f0abc62 100644
--- a/crawl-ref/source/maps.h
+++ b/crawl-ref/source/maps.h
@@ -52,9 +52,9 @@ void add_parsed_map(const map_def &md);
std::vector<std::string> find_map_matches(const std::string &name);
-std::vector<map_def> find_maps_for_tag (const std::string tag,
- bool check_depth = false,
- bool check_used = true);
+mapref_vector find_maps_for_tag (const std::string tag,
+ bool check_depth = false,
+ bool check_used = true);
int weight_map_vector (std::vector<map_def> maps);
@@ -89,7 +89,7 @@ extern point_vector map_anchor_points;
// Use dgn_map_parameters to modify:
extern string_vector map_parameters;
-const int MAP_CACHE_VERSION = 1013;
+const int MAP_CACHE_VERSION = 1014;
class dgn_map_parameters
{