summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-24 19:25:49 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-24 19:25:49 +0000
commitc86837a908de5a291088fccea2d1df2b8c30712a (patch)
tree37bdc22349e3d07abb0038a7c5d678d1f8204378
parentd60673a651ffd703f50e5e6bd7968d41a5909991 (diff)
downloadcrawl-ref-c86837a908de5a291088fccea2d1df2b8c30712a.tar.gz
crawl-ref-c86837a908de5a291088fccea2d1df2b8c30712a.zip
Add spacing fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9818 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/newgame.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index ccd9e1a351..343ce30af1 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -596,7 +596,7 @@ static void _pick_random_species_and_class( bool unrestricted_only )
unrestricted_only))
{
job_count++;
- if (one_chance_in( job_count ))
+ if (one_chance_in(job_count))
{
species = static_cast<species_type>(sp);
job = static_cast<job_type>(cl);
@@ -606,7 +606,7 @@ static void _pick_random_species_and_class( bool unrestricted_only )
}
// At least one job must exist in the game, else we're in big trouble.
- ASSERT( species != SP_UNKNOWN && job != JOB_UNKNOWN );
+ ASSERT(species != SP_UNKNOWN && job != JOB_UNKNOWN);
// Return draconian variety here.
if (species == SP_RED_DRACONIAN)