summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index b4e365a41a..3d0ef4a04f 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -1421,7 +1421,7 @@ static bool _do_description(std::string key, std::string type,
static bool _handle_FAQ()
{
clrscr();
- viewwindow(true, false);
+ viewwindow(false);
std::vector<std::string> question_keys = getAllFAQKeys();
if (question_keys.empty())
@@ -1496,7 +1496,7 @@ static bool _find_description(bool &again, std::string& error_inout)
again = true;
clrscr();
- viewwindow(true, false);
+ viewwindow(false);
if (!error_inout.empty())
mpr(error_inout.c_str(), MSGCH_PROMPT);
@@ -1796,7 +1796,7 @@ static int _keyhelp_keyfilter(int ch)
}
while (again);
- viewwindow(true, false);
+ viewwindow(false);
return -1;
}