summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/delay.h
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/delay.h')
-rw-r--r--crawl-ref/source/delay.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/delay.h b/crawl-ref/source/delay.h
index b52b95497d..70f3c749c9 100644
--- a/crawl-ref/source/delay.h
+++ b/crawl-ref/source/delay.h
@@ -64,8 +64,8 @@ struct ait_hp_loss
ait_hp_loss(int _hp, int _ht) : hp(_hp), hurt_type(_ht) { }
};
-void start_delay( delay_type type, int turns, int parm1 = 0, int parm2 = 0 );
-void stop_delay( bool stop_stair_travel = false );
+void start_delay(delay_type type, int turns, int parm1 = 0, int parm2 = 0);
+void stop_delay(bool stop_stair_travel = false);
bool you_are_delayed();
delay_type current_delay_action();
void handle_delay();
@@ -91,7 +91,7 @@ const char *delay_name(int delay);
delay_type get_delay(const std::string &);
void autotoggle_autopickup(bool off);
-bool interrupt_activity( activity_interrupt_type ai,
+bool interrupt_activity(activity_interrupt_type ai,
const activity_interrupt_data &a
- = activity_interrupt_data() );
+ = activity_interrupt_data());
#endif