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, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 889c46a503..2c0957d092 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -4194,6 +4194,10 @@ void view_update_at(const coord_def &pos)
gotoxy(vp.x, vp.y);
textattr(flash_colour? real_colour(flash_colour) : colour);
putwch(ch);
+
+ // Force colour back to normal, else clrscr() will flood screen
+ // with this colour on DOS.
+ textattr(LIGHTGREY);
}
bool view_update()