summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libw32c.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-04-02 23:29:43 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-04-02 23:29:43 +0200
commit1097d773f78f37c96841f98558d6f3e75572f4b7 (patch)
treefa4e9215c05c70b51efc5bc7df75dcfa468bf7ed /crawl-ref/source/libw32c.cc
parent63f08da3a9808af44095ac198fb513b3643c346d (diff)
downloadcrawl-ref-1097d773f78f37c96841f98558d6f3e75572f4b7.tar.gz
crawl-ref-1097d773f78f37c96841f98558d6f3e75572f4b7.zip
Don't rely on undocumented behaviour of ncursesw.
The API doesn't provide a way to giveback a function key, so let's do our own giveback buffer.
Diffstat (limited to 'crawl-ref/source/libw32c.cc')
-rw-r--r--crawl-ref/source/libw32c.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/libw32c.cc b/crawl-ref/source/libw32c.cc
index f617722a1e..d5dba389c6 100644
--- a/crawl-ref/source/libw32c.cc
+++ b/crawl-ref/source/libw32c.cc
@@ -822,7 +822,7 @@ int getchk(void)
return key_to_command(c);
}
-int kbhit()
+bool kbhit()
{
INPUT_RECORD ir[10];
DWORD read_count = 0;