summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transform.h
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2010-12-05 23:43:41 +0100
committerRaphael Langella <raphael.langella@gmail.com>2010-12-06 00:05:09 +0100
commit67ef800a9fda0f829721defd8d86e5734d06d2b2 (patch)
treec98b1679a9089c940015866bab0517b63d914b78 /crawl-ref/source/transform.h
parent94634525f923aba57542ce2e6950f23bc309503a (diff)
downloadcrawl-ref-67ef800a9fda0f829721defd8d86e5734d06d2b2.tar.gz
crawl-ref-67ef800a9fda0f829721defd8d86e5734d06d2b2.zip
Some more clean up and consistency in transform.cc
Diffstat (limited to 'crawl-ref/source/transform.h')
-rw-r--r--crawl-ref/source/transform.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/transform.h b/crawl-ref/source/transform.h
index 43ce710667..259697c121 100644
--- a/crawl-ref/source/transform.h
+++ b/crawl-ref/source/transform.h
@@ -13,15 +13,15 @@
#include "enum.h"
#include "player.h"
-bool form_can_wield(transformation_type trans = you.form);
-bool form_can_fly(transformation_type trans = you.form);
-bool form_can_swim(transformation_type trans = you.form);
-bool form_likes_water(transformation_type trans = you.form);
-bool form_can_butcher_barehanded(transformation_type trans = you.form);
+bool form_can_wield(transformation_type form = you.form);
+bool form_can_fly(transformation_type form = you.form);
+bool form_can_swim(transformation_type form = you.form);
+bool form_likes_water(transformation_type form = you.form);
+bool form_can_butcher_barehanded(transformation_type form = you.form);
bool form_changed_physiology(bool phys_scales = false,
- transformation_type trans = you.form);
+ transformation_type form = you.form);
bool form_can_wear_item(const item_def& item,
- transformation_type trans = you.form);
+ transformation_type form = you.form);
bool can_equip(equipment_type use_which, bool ignore_temporary);