summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godprayer.h
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-04 23:05:04 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-04 23:05:04 -0700
commit22d3eb9efd2b701ee88451eec8ca8dea4d1c5b72 (patch)
tree5b13553110f98ed339d6fc7eca50e9810999bd9b /crawl-ref/source/godprayer.h
parentb98b8932dcd445179cf0c0d235e91f6d1e577f92 (diff)
downloadcrawl-ref-22d3eb9efd2b701ee88451eec8ca8dea4d1c5b72.tar.gz
crawl-ref-22d3eb9efd2b701ee88451eec8ca8dea4d1c5b72.zip
Constify
Diffstat (limited to 'crawl-ref/source/godprayer.h')
-rw-r--r--crawl-ref/source/godprayer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/godprayer.h b/crawl-ref/source/godprayer.h
index e44e54d43e..b865da16ea 100644
--- a/crawl-ref/source/godprayer.h
+++ b/crawl-ref/source/godprayer.h
@@ -13,6 +13,7 @@ void pray();
piety_gain_t sacrifice_item_stack(const item_def& item, int *js = 0,
int quantity = 0);
-int zin_tithe(item_def& item, int quant, bool quiet, bool converting = false);
+int zin_tithe(const item_def& item, int quant, bool quiet,
+ bool converting = false);
#endif