summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-10-11 00:32:25 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-10-11 00:51:34 +0200
commit56bc1ab90b367b4d8a1dce8fc33a7f951edaafee (patch)
tree1af6834ad6e7ccdd56683a9a304a8422f8e1f5c6 /crawl-ref/source/food.h
parent3a956086dbbf1f490635405bde24d1f1136be127 (diff)
downloadcrawl-ref-56bc1ab90b367b4d8a1dce8fc33a7f951edaafee.tar.gz
crawl-ref-56bc1ab90b367b4d8a1dce8fc33a7f951edaafee.zip
Clean up an unused argument.
Diffstat (limited to 'crawl-ref/source/food.h')
-rw-r--r--crawl-ref/source/food.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/food.h b/crawl-ref/source/food.h
index 93405fb5b0..42d57b68c0 100644
--- a/crawl-ref/source/food.h
+++ b/crawl-ref/source/food.h
@@ -62,10 +62,9 @@ bool is_preferred_food(const item_def &food);
bool is_forbidden_food(const item_def &food);
bool can_ingest(const item_def &food, bool suppress_msg,
- bool reqid = false, bool check_hunger = true);
+ bool check_hunger = true);
bool can_ingest(int what_isit, int kindof_thing, bool suppress_msg,
- bool reqid = false, bool check_hunger = true,
- bool rotten = false);
+ bool check_hunger = true, bool rotten = false);
bool chunk_is_poisonous(int chunktype);
void eat_floor_item(int item_link);