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.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 4ab715cfa4..2c544fb544 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -62,8 +62,12 @@ void update_turn_count()
{
// Don't update turn counter when running/resting/traveling to
// prevent pointless screen updates.
- if (you.running > 0 || (you.running < 0 && Options.travel_delay == -1))
+ if (!Options.show_turns
+ || you.running > 0
+ || (you.running < 0 && Options.travel_delay == -1))
+ {
return;
+ }
// FIXME: Create some kind of layout manager class so we can
// templatise the heads-up display layout and stop hardcoding