summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/colour.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-05 13:22:39 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-05 14:00:11 +0200
commit68935e461e64eeb85ea44c616d1eab58975b8e20 (patch)
tree471804168af54b681856211f26fefb5091b34c34 /crawl-ref/source/colour.cc
parent15d548d4ba1148531b8d755d4130962126bccb52 (diff)
downloadcrawl-ref-68935e461e64eeb85ea44c616d1eab58975b8e20.tar.gz
crawl-ref-68935e461e64eeb85ea44c616d1eab58975b8e20.zip
Some more return deparenthesization.
Diffstat (limited to 'crawl-ref/source/colour.cc')
-rw-r--r--crawl-ref/source/colour.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/colour.cc b/crawl-ref/source/colour.cc
index d78c5a6bfd..c88efad44a 100644
--- a/crawl-ref/source/colour.cc
+++ b/crawl-ref/source/colour.cc
@@ -777,19 +777,19 @@ static unsigned _colflag2brand(int colflag)
switch (colflag)
{
case COLFLAG_ITEM_HEAP:
- return (Options.heap_brand);
+ return Options.heap_brand;
case COLFLAG_FRIENDLY_MONSTER:
- return (Options.friend_brand);
+ return Options.friend_brand;
case COLFLAG_NEUTRAL_MONSTER:
- return (Options.neutral_brand);
+ return Options.neutral_brand;
case COLFLAG_WILLSTAB:
- return (Options.stab_brand);
+ return Options.stab_brand;
case COLFLAG_MAYSTAB:
- return (Options.may_stab_brand);
+ return Options.may_stab_brand;
case COLFLAG_FEATURE_ITEM:
- return (Options.feature_item_brand);
+ return Options.feature_item_brand;
case COLFLAG_TRAP_ITEM:
- return (Options.trap_item_brand);
+ return Options.trap_item_brand;
default:
return CHATTR_NORMAL;
}