summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index 5a03322aab..9edff6b4cd 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -76,7 +76,7 @@ static bool _is_noteworthy_hp( int hp, int maxhp )
static int _dungeon_branch_depth( unsigned char branch )
{
- if ( branch >= NUM_BRANCHES )
+ if (branch >= NUM_BRANCHES)
return -1;
return branches[branch].depth;
}