summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-15 17:38:11 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-15 17:38:11 +0000
commitfd4e339d3cbdc57fc9d5d70b6fd10add8c7bd166 (patch)
treedf5f3b3c2d9770d0e249d61c47a65a6b7dc8860a /crawl-ref
parent3479b9467cd6645005272fee4786776fb2ad9cca (diff)
downloadcrawl-ref-fd4e339d3cbdc57fc9d5d70b6fd10add8c7bd166.tar.gz
crawl-ref-fd4e339d3cbdc57fc9d5d70b6fd10add8c7bd166.zip
Add minor description fixes: Shift Zin's religious help down one line to
compensate for the new "protection from mutation" line, and display it in the GOTO_CRT region instead of the GOTO_MSG region, so that it shows up properly in the tiles version. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3276 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/describe.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 0f89e244b6..d21deb18cb 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2552,10 +2552,10 @@ void describe_god( god_type which_god, bool give_title )
if ( which_god == you.religion )
{
if (you.religion == GOD_ZIN)
- gotoxy(1, get_number_of_lines() - 1, GOTO_MSG);
+ gotoxy(1, get_number_of_lines(), GOTO_CRT);
else
- gotoxy(1, get_number_of_lines() - 2, GOTO_MSG);
-
+ gotoxy(1, get_number_of_lines() - 2, GOTO_CRT);
+
textcolor(LIGHTGRAY);
cprintf(get_linebreak_string(religion_help(which_god),
numcols).c_str());