summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/quiver.cc
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/quiver.cc
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/quiver.cc')
-rw-r--r--crawl-ref/source/quiver.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/quiver.cc b/crawl-ref/source/quiver.cc
index ab2f867d2e..1a1fa46541 100644
--- a/crawl-ref/source/quiver.cc
+++ b/crawl-ref/source/quiver.cc
@@ -376,7 +376,7 @@ void player_quiver::get_fire_order(std::vector<int>& v) const
// fire order is empty.
//
// launcher determines what items match the 'launcher' fire_order type.
-void player_quiver::_get_fire_order( std::vector<int>& order,
+void player_quiver::_get_fire_order(std::vector<int>& order,
bool ignore_inscription_etc,
const item_def* launcher) const
{
@@ -432,7 +432,7 @@ void player_quiver::_get_fire_order( std::vector<int>& order,
if (_item_matches(item, (fire_type) Options.fire_order[i_flags],
launcher))
{
- order.push_back( (i_flags<<16) | (i_inv & 0xffff) );
+ order.push_back((i_flags<<16) | (i_inv & 0xffff));
break;
}
}