summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hints.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-14 17:21:58 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-15 21:03:43 +0100
commit04ab49bde8bfadd87c7897b3319238b1da561812 (patch)
treeafd986d551f519de290313bb485d0ee1bfa743c2 /crawl-ref/source/hints.cc
parent51aa1dcc06634d7d1851e964ac63b3c1fca3e1cf (diff)
downloadcrawl-ref-04ab49bde8bfadd87c7897b3319238b1da561812.tar.gz
crawl-ref-04ab49bde8bfadd87c7897b3319238b1da561812.zip
Drop unnecessary parentheses from return statements.
Diffstat (limited to 'crawl-ref/source/hints.cc')
-rw-r--r--crawl-ref/source/hints.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/hints.cc b/crawl-ref/source/hints.cc
index f192b43b64..220df43d2f 100644
--- a/crawl-ref/source/hints.cc
+++ b/crawl-ref/source/hints.cc
@@ -73,7 +73,7 @@ static int _get_hints_cols()
return crawl_view.msgsz.x;
#else
int ncols = get_number_of_cols();
- return (ncols > 80 ? 80 : ncols);
+ return ncols > 80 ? 80 : ncols;
#endif
}
@@ -4362,7 +4362,7 @@ bool hints_monster_interesting(const monster* mons)
return true;
// Dangerous.
- return (mons_threat_level(mons) == MTHRT_NASTY);
+ return mons_threat_level(mons) == MTHRT_NASTY;
}
void hints_describe_monster(const monster_info& mi, bool has_stat_desc)