summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2013-11-15 17:26:11 -0500
committerNeil Moore <neil@s-z.org>2013-11-15 17:26:11 -0500
commite7b96ffa70ca93a3cea9e2cead6f40085a6a2d68 (patch)
treeec3e4b86d3b4ed96250f735b4e597e83ee886de8 /crawl-ref/source/notes.cc
parentb65bf4d5198c19095e3084a88983680df19ec5ee (diff)
downloadcrawl-ref-e7b96ffa70ca93a3cea9e2cead6f40085a6a2d68.tar.gz
crawl-ref-e7b96ffa70ca93a3cea9e2cead6f40085a6a2d68.zip
More formatting fixes for return (...);
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index d9beb78cd9..32499caf30 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -84,9 +84,9 @@ static bool _is_noteworthy_dlevel(unsigned short place)
if (!is_connected_branch(static_cast<branch_type>(branch)))
return true;
- return (lev == _dungeon_branch_depth(branch)
- || branch == BRANCH_DUNGEON && (lev % 5) == 0
- || branch != BRANCH_DUNGEON && lev == 1);
+ return lev == _dungeon_branch_depth(branch)
+ || branch == BRANCH_DUNGEON && (lev % 5) == 0
+ || branch != BRANCH_DUNGEON && lev == 1;
}
// Is a note worth taking?