summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/xom.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-19 06:32:44 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-19 06:32:44 +0000
commit6f1468c6da508e733e8e535c459a563e48151532 (patch)
tree5f3ff0263fda64cbfab3ae8aaefb98c50cf784af /crawl-ref/source/xom.cc
parent33005dad6d50d774bc4fe6b6afcd5b60c55cd0b6 (diff)
downloadcrawl-ref-6f1468c6da508e733e8e535c459a563e48151532.tar.gz
crawl-ref-6f1468c6da508e733e8e535c459a563e48151532.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8573 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/xom.cc')
-rw-r--r--crawl-ref/source/xom.cc22
1 files changed, 12 insertions, 10 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index b51315b92c..87db35f6de 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -1240,7 +1240,7 @@ static void _xom_zero_miscast()
std::vector<std::string> priority;
std::vector<int> inv_items;
- for (int i = 0; i < ENDOFPACK; i++)
+ for (int i = 0; i < ENDOFPACK; ++i)
{
const item_def &item(you.inv[i]);
if (is_valid_item(item) && !item_is_equipped(item)
@@ -1636,11 +1636,13 @@ static bool _xom_lose_stats()
stat_type types[3] = {STAT_STRENGTH, STAT_DEXTERITY,
STAT_INTELLIGENCE};
int tries = 0;
- do {
+ do
+ {
int idx = random2(3);
stat = types[idx];
max = std::min(3, vals[idx] - 1);
- } while (max < 2 && (++tries < 30));
+ }
+ while (max < 2 && (++tries < 30));
if (tries >= 30)
return (false);
@@ -1885,7 +1887,7 @@ static bool _xom_is_bad(int sever, int tension)
return (done);
}
-static char* _stat_ptrs[3] = {&you.strength, &you.intel, &you.dex};
+static char* _stat_ptrs[3] = {&you.strength, &you.intel, &you.dex};
static void _handle_accidental_death(const int orig_hp,
const char orig_stats[],
@@ -1906,7 +1908,7 @@ static void _handle_accidental_death(const int orig_hp,
const dungeon_feature_type feat = grd(you.pos());
- switch(you.escaped_death_cause)
+ switch (you.escaped_death_cause)
{
case NUM_KILLBY:
case KILLED_BY_LEAVING:
@@ -1962,9 +1964,9 @@ static void _handle_accidental_death(const int orig_hp,
while (you.dex <= 0 && you.mutation[bad] > orig_mutation[bad])
delete_mutation(bad, true, true);
}
- while(you.dex <= 0
- && you.mutation[MUT_FLEXIBLE_WEAK] <
- orig_mutation[MUT_FLEXIBLE_WEAK])
+ while (you.dex <= 0
+ && you.mutation[MUT_FLEXIBLE_WEAK] <
+ orig_mutation[MUT_FLEXIBLE_WEAK])
{
mutate(MUT_FLEXIBLE_WEAK, true, true, true);
}
@@ -1982,8 +1984,8 @@ static void _handle_accidental_death(const int orig_hp,
mutate(MUT_STRONG_STIFF, true, true, true);
}
- mutation_type bad_muts[3] = { MUT_WEAK, MUT_DOPEY, MUT_CLUMSY };
- mutation_type good_muts[3] = { MUT_STRONG, MUT_CLEVER, MUT_AGILE };
+ mutation_type bad_muts[3] = {MUT_WEAK, MUT_DOPEY, MUT_CLUMSY};
+ mutation_type good_muts[3] = {MUT_STRONG, MUT_CLEVER, MUT_AGILE};
for (int i = 0; i < 3; ++i)
{