summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-09 18:42:35 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-09 18:42:35 +0000
commite262ce4eaaf15dce979f563beaa33c73503d089a (patch)
tree3766c8ee3ad852db52a81d13fbb798ce00b27231
parent340eb55f6f4e86a27ae17457d04d81ca52c17e6f (diff)
downloadcrawl-ref-e262ce4eaaf15dce979f563beaa33c73503d089a.tar.gz
crawl-ref-e262ce4eaaf15dce979f563beaa33c73503d089a.zip
Fix output display to accommodate the new quiver listing in the status
section. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3235 c06c8d41-db1a-0410-9941-cceddc491573
-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 f527dfec17..a696d632af 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -500,9 +500,9 @@ void print_stats(void)
if (you.redraw_status_flags & REDRAW_LINE_2_MASK)
{
- gotoxy(1, 15, GOTO_STAT);
+ gotoxy(1, 16, GOTO_STAT);
clear_to_end_of_line();
- gotoxy(1, 15, GOTO_STAT);
+ gotoxy(1, 16, GOTO_STAT);
// Max length of this line = 8 * 5 - 1 = 39
if (you.duration[DUR_PRAYER])
@@ -597,9 +597,9 @@ void print_stats(void)
if (you.redraw_status_flags & REDRAW_LINE_3_MASK)
{
- gotoxy(1, 16, GOTO_STAT);
+ gotoxy(1, 17, GOTO_STAT);
clear_to_end_of_line();
- gotoxy(1, 16, GOTO_STAT);
+ gotoxy(1, 17, GOTO_STAT);
// Max length of this line = 7 * 5 + 3 - 1 = 37
// Note the usage of bad_ench_colour() correspond to levels that
@@ -685,7 +685,7 @@ void print_stats(void)
#if DEBUG_DIAGNOSTICS
// debug mode GPS
- gotoxy(1, 17, GOTO_STAT);
+ gotoxy(1, 18, GOTO_STAT);
cprintf( "Position (%2d,%2d)", you.x_pos, you.y_pos );
#endif