summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-31 04:25:16 +0000
committerpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-31 04:25:16 +0000
commitdc2e70a20204636dd3cedccbc9f08dd42d906a31 (patch)
treed209fe87467a8f74c928bc949d2768a76dee5271 /crawl-ref
parent8229a8803f34dd7976d96e0caf3be86d926bf5d3 (diff)
downloadcrawl-ref-dc2e70a20204636dd3cedccbc9f08dd42d906a31.tar.gz
crawl-ref-dc2e70a20204636dd3cedccbc9f08dd42d906a31.zip
Don't print GPS all the time. Fix spacing on "touch "
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3969 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/output.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 8e6f4b630b..227f2fdd33 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -471,6 +471,7 @@ static void _print_stats_qv()
// - magenta, light magenta for "better" enchantments (deflect, fly)
//
// Prints burden, hunger
+// Max length: "Encumbered Near Starving (NNN:NNN)" = 34
static void _print_stats_line1()
{
cgotoxy(1, 15, GOTO_STAT);
@@ -523,7 +524,7 @@ static void _print_stats_line1()
#if DEBUG_DIAGNOSTICS
// debug mode hunger-o-meter
- cprintf( " (%d:%d) ", you.hunger - you.old_hunger, you.hunger );
+ cprintf( " (%d:%d)", you.hunger - you.old_hunger, you.hunger );
#endif
}
@@ -557,7 +558,6 @@ static void _print_stats_line2()
if (you.duration[DUR_DEFLECT_MISSILES])
{
-
_dur_colour( MAGENTA, (you.duration[DUR_DEFLECT_MISSILES] <= 6) );
cprintf( "DMsl " );
}
@@ -609,10 +609,10 @@ static void _print_stats_line2()
}
if (you.duration[DUR_CONFUSING_TOUCH]
- && wherex() < get_number_of_cols() - 5)
+ && wherex() < get_number_of_cols() - 6)
{
_dur_colour( BLUE, (you.duration[DUR_SILENCE] <= 20) );
- cprintf("Touch");
+ cprintf("Touch ");
}
if (you.duration[DUR_BARGAIN] && wherex() < get_number_of_cols() - 5)
@@ -731,7 +731,7 @@ static void _print_stats_line3()
textcolor( LIGHTGREY );
-#if DEBUG_DIAGNOSTICS || 1
+#if DEBUG_DIAGNOSTICS
cprintf( "%2d,%2d", you.x_pos, you.y_pos );
#endif
}