summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mapdef.h')
-rw-r--r--crawl-ref/source/mapdef.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mapdef.h b/crawl-ref/source/mapdef.h
index 354109e8a1..a8a237650c 100644
--- a/crawl-ref/source/mapdef.h
+++ b/crawl-ref/source/mapdef.h
@@ -155,7 +155,7 @@ public:
map_colour_list colours;
};
-typedef std::pair<int, int> map_weighted_fprop;
+typedef std::pair<unsigned long, int> map_weighted_fprop;
class map_fprop_list : public std::vector<map_weighted_fprop>
{
public:
@@ -169,12 +169,12 @@ public:
{
}
- int get_property();
+ unsigned long get_property();
public:
std::string key;
bool fix;
- int fixed_prop;
+ unsigned long fixed_prop;
map_fprop_list fprops;
};