summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-08 20:46:24 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-08 20:46:24 +0000
commit1559af94f5ff8b4157fe4f7d43e38babda52a3ce (patch)
treee1a98fbde424c5bcb5829c48faa04b0bd71d5d3e /crawl-ref/source/output.cc
parent55e07ce8aad76a99ccd81638b0edafc680609d7d (diff)
downloadcrawl-ref-1559af94f5ff8b4157fe4f7d43e38babda52a3ce.tar.gz
crawl-ref-1559af94f5ff8b4157fe4f7d43e38babda52a3ce.zip
Comment the workaround for a Windows display bug.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8989 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index fbd37cd4c6..814fff9d3d 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -1518,7 +1518,10 @@ static void _print_next_monster_desc(const std::vector<monster_pane_info>& mons,
cprintf(" ");
textbackground(dam_color);
textcolor(dam_color);
- // Temporary, to diagnose 1933260
+ // FIXME: On Windows, printing a blank space here
+ // doesn't give us the correct colours. So use and
+ // underscore instead. Is this a bug with our interface
+ // or with Windows?
cprintf("_");
textbackground(BLACK);
textcolor(LIGHTGREY);