summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-01 18:26:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-01 18:26:07 +0000
commitdf11bc9d69cd718dc2c6a4756fbaba648514b91e (patch)
tree88cd205835988c4d1a29727f221fd865c45f22ec /crawl-ref/source/newgame.cc
parente600dd3df6dbc327964950cb37c8a2f177daf2a2 (diff)
downloadcrawl-ref-df11bc9d69cd718dc2c6a4756fbaba648514b91e.tar.gz
crawl-ref-df11bc9d69cd718dc2c6a4756fbaba648514b91e.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5413 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index efbc313ac7..b65f2f774c 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -3847,10 +3847,10 @@ bool _give_items_skills()
{
textcolor(BROWN);
cprintf(EOL "Enter - %s" EOL,
- Options.prev_pr == GOD_ZIN? "Zin" :
- Options.prev_pr == GOD_YREDELEMNUL? "Yredelemnul" :
- Options.prev_pr == GOD_BEOGH? "Beogh"
- : "Random");
+ Options.prev_pr == GOD_ZIN ? "Zin" :
+ Options.prev_pr == GOD_YREDELEMNUL ? "Yredelemnul" :
+ Options.prev_pr == GOD_BEOGH ? "Beogh"
+ : "Random");
}
do
@@ -3885,7 +3885,7 @@ bool _give_items_skills()
keyn = '*'; // for ng_pr setting
// fall-through for random
case '*':
- you.religion = coinflip()? GOD_ZIN : GOD_YREDELEMNUL;
+ you.religion = coinflip() ? GOD_ZIN : GOD_YREDELEMNUL;
if (you.species == SP_HILL_ORC && coinflip())
you.religion = GOD_BEOGH;
break;