From 260284a5ad0dbc2448bb3f5dd80ea0efb9daef42 Mon Sep 17 00:00:00 2001 From: ennewalker Date: Sun, 11 Jan 2009 19:59:41 +0000 Subject: [2467406] Improving tiles screen layout. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8414 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/output.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/output.cc') 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; -- cgit v1.2.3-54-g00ecf