may seem odd to some players, but I like it.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@735 c06c8d41-db1a-0410-9941-cceddc491573
YIIILIV4ZPRIPWWT4GL7YWSJCUVH6RJJLXV4XIHY6SF3H7Y3EAYAC
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))
return;
// FIXME: Create some kind of layout manager class so we can
// templatise the heads-up display layout and stop hardcoding
// these coords.
gotoxy(61, 10);
textcolor(LIGHTGREY);
// Show the turn count starting from 1. You can still quit on turn 0.
cprintf("%ld", you.num_turns);
}