summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libgui.h
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/libgui.h
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/libgui.h')
-rw-r--r--crawl-ref/source/libgui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/libgui.h b/crawl-ref/source/libgui.h
index adf5878574..b784566363 100644
--- a/crawl-ref/source/libgui.h
+++ b/crawl-ref/source/libgui.h
@@ -54,7 +54,7 @@ coord_def cgetpos(GotoRegion region = GOTO_CRT);
GotoRegion get_cursor_region();
void delay(int ms);
void update_screen();
-int kbhit();
+bool kbhit();
#ifdef UNIX
extern "C" char *strlwr(char *str);