summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index e49001f017..ac901039c8 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -791,7 +791,8 @@ static void _print_status_lights(int y)
clear_to_end_of_line();
++ line_cur;
// Careful not to trip the )#(*$ cgotoxy ASSERT
- if (line_cur == line_end) break;
+ if (line_cur == line_end)
+ break;
cgotoxy(1, line_cur, GOTO_STAT);
}
}
@@ -865,15 +866,16 @@ void print_stats(void)
if (you.redraw_quiver || you.wield_change)
{
_print_stats_qv(10+yhack);
+ you.redraw_quiver = false;
}
- you.wield_change = false;
- you.redraw_quiver = false;
+ you.wield_change = false;
if (you.redraw_status_flags)
{
you.redraw_status_flags = 0;
_print_status_lights(11+yhack);
}
+ textcolor(LIGHTGREY);
update_screen();
}