summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 6ec000adf0..40cde6e390 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -466,7 +466,9 @@ static void _get_symbol( const coord_def& where,
{
// Don't clobber with BLACK, because the colour should be
// already set.
- if (fdef.colour != BLACK)
+ if (shop_is_closed(where))
+ *colour = LIGHTGREY | colmask;
+ else if (fdef.colour != BLACK)
*colour = fdef.colour | colmask;
if (fdef.em_colour != fdef.colour && fdef.em_colour)