summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-30 23:10:08 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-30 23:10:08 +0000
commitfc34c2118ce7b3506c5d2c16e5dcc824978f79e5 (patch)
tree264f362712a4315c39a5b3af06e8802dd4fc4cbe /crawl-ref/source/cloud.cc
parent0b97115e76ac68219aba51eb7f8058be3d23ea9a (diff)
downloadcrawl-ref-fc34c2118ce7b3506c5d2c16e5dcc824978f79e5.tar.gz
crawl-ref-fc34c2118ce7b3506c5d2c16e5dcc824978f79e5.zip
Add spacing fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9709 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/cloud.cc')
-rw-r--r--crawl-ref/source/cloud.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc
index 921cb9cfc7..a2a4f8609c 100644
--- a/crawl-ref/source/cloud.cc
+++ b/crawl-ref/source/cloud.cc
@@ -45,7 +45,7 @@ static int _actual_spread_rate(cloud_type type, int spread_rate)
static bool _killer_whose_match(kill_category whose, killer_type killer)
{
- switch(whose)
+ switch (whose)
{
case KC_YOU:
return (killer == KILL_YOU_MISSILE || killer == KILL_YOU_CONF);
@@ -676,7 +676,7 @@ std::string cloud_name(cloud_type type)
kill_category cloud_struct::killer_to_whose(killer_type killer)
{
- switch(killer)
+ switch (killer)
{
case KILL_YOU:
case KILL_YOU_MISSILE:
@@ -696,7 +696,7 @@ kill_category cloud_struct::killer_to_whose(killer_type killer)
killer_type cloud_struct::whose_to_killer(kill_category whose)
{
- switch(whose)
+ switch (whose)
{
case KC_YOU: return(KILL_YOU_MISSILE);
case KC_FRIENDLY: return(KILL_MON_MISSILE);
@@ -717,7 +717,7 @@ void cloud_struct::set_killer(killer_type _killer)
killer = _killer;
whose = killer_to_whose(killer);
- switch(killer)
+ switch (killer)
{
case KILL_YOU:
killer = KILL_YOU_MISSILE;
@@ -801,7 +801,7 @@ int num_fogs_for_place(int level_number, const level_id &place)
if (level_number == -1)
level_number = place.absdepth();
- switch(place.level_type)
+ switch (place.level_type)
{
case LEVEL_DUNGEON:
{
@@ -836,7 +836,7 @@ fog_machine_data random_fog_for_place(int level_number, const level_id &place)
if (level_number == -1)
level_number = place.absdepth();
- switch(place.level_type)
+ switch (place.level_type)
{
case LEVEL_DUNGEON:
{