summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-11 19:59:41 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-11 19:59:41 +0000
commit260284a5ad0dbc2448bb3f5dd80ea0efb9daef42 (patch)
tree038af501831e73c626e2e879a092ee5cd8b6c8c2 /crawl-ref/source/output.cc
parent6ff6324e1225d17c1911efda0853ae032546cb91 (diff)
downloadcrawl-ref-260284a5ad0dbc2448bb3f5dd80ea0efb9daef42.tar.gz
crawl-ref-260284a5ad0dbc2448bb3f5dd80ea0efb9daef42.zip
[2467406] Improving tiles screen layout.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8414 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 325b5654bd..bdbb7651c2 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -46,9 +46,7 @@ REVISION("$Rev$");
#include "skills2.h"
#include "stuff.h"
#include "transfor.h"
-#ifdef USE_TILE
#include "tiles.h"
-#endif
#include "travel.h"
#include "view.h"
@@ -867,12 +865,14 @@ void print_stats(void)
{
cgotoxy(1,8 + yhack, GOTO_STAT);
textcolor(Options.status_caption_colour);
- cprintf("Exp Pool: ");
- textcolor(HUD_VALUE_COLOUR);
#if DEBUG_DIAGNOSTICS
+ cprintf("XP: ");
+ textcolor(HUD_VALUE_COLOUR);
cprintf("%d/%d (%d) ",
you.skill_cost_level, you.exp_available, you.experience);
#else
+ cprintf("Exp Pool: ");
+ textcolor(HUD_VALUE_COLOUR);
cprintf("%-6d", you.exp_available);
#endif
you.redraw_experience = false;