summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transfor.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/transfor.h')
-rw-r--r--crawl-ref/source/transfor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/transfor.h b/crawl-ref/source/transfor.h
index 933f512cb8..b701f5fdae 100644
--- a/crawl-ref/source/transfor.h
+++ b/crawl-ref/source/transfor.h
@@ -49,15 +49,15 @@ void untransform(void);
* *********************************************************************** */
bool can_equip(equipment_type use_which, bool ignore_temporary);
bool check_transformation_stat_loss(const std::set<equipment_type> &remove,
- int str_loss = 0, int dex_loss = 0,
- int int_loss = 0, bool quiet = false);
+ bool quiet = false, int str_loss = 0,
+ int dex_loss = 0, int int_loss = 0);
size_type transform_size(int psize = PSIZE_BODY);
// last updated 12may2000 {dlb}
/* ***********************************************************************
* called from: ability - spell
* *********************************************************************** */
-bool transform(int pow, transformation_type which_trans);
+bool transform(int pow, transformation_type which_trans, bool quiet = false);
// last updated 12may2000 {dlb}