summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-05 01:33:53 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-05 01:33:53 +0000
commit62f7040f14b39e67042be98f951575fbc819e84e (patch)
treed4fa0598a1bee1d34fff81e2c150de08c2256753 /crawl-ref/source/describe.cc
parent19155f1f85058ef9d65d11e60c63cc69c36d4e8a (diff)
downloadcrawl-ref-62f7040f14b39e67042be98f951575fbc819e84e.tar.gz
crawl-ref-62f7040f14b39e67042be98f951575fbc819e84e.zip
Tiles!
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3194 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc22
1 files changed, 19 insertions, 3 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index d67c27fde0..28f38c0574 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1687,7 +1687,11 @@ void describe_feature_wide(int x, int y)
clrscr();
print_description(desc);
-
+
+#ifdef USE_TILE
+ mouse_control mc(MOUSE_MODE_MORE);
+#endif
+
if (Options.tutorial_left)
tutorial_describe_feature(grd[x][y]);
@@ -1848,6 +1852,10 @@ void describe_spell(spell_type spelled)
clrscr();
print_description(description);
+#ifdef USE_TILE
+ mouse_control mc(MOUSE_MODE_MORE);
+#endif
+
if (getch() == 0)
getch();
} // end describe_spell()
@@ -2137,6 +2145,10 @@ void describe_monsters(monsters& mons)
clrscr();
print_description(description.str());
+#ifdef USE_TILE
+ mouse_control mc(MOUSE_MODE_MORE);
+#endif
+
if (Options.tutorial_left)
tutorial_describe_monster(static_cast<const monsters*>(&mons));
@@ -2553,14 +2565,18 @@ 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);
+ gotoxy(1, get_number_of_lines() - 1, GOTO_MSG);
else
- gotoxy(1, get_number_of_lines() - 2);
+ gotoxy(1, get_number_of_lines() - 2, GOTO_MSG);
textcolor(LIGHTGRAY);
cprintf(get_linebreak_string(religion_help(which_god),
numcols).c_str());
}
+#ifdef USE_TILE
+ mouse_control mc(MOUSE_MODE_MORE);
+#endif
+
get_ch();
}