summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libgui.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-02-14 16:35:42 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-03-31 22:17:07 +0200
commit6f1033c0763f8226e28e79ba7ec9ccc39c715cea (patch)
tree19e35ac1ced732be27ec48781390dbf1047b6ac1 /crawl-ref/source/libgui.cc
parentd3697953552df3e272b77eb1e7528bacd59643d5 (diff)
downloadcrawl-ref-6f1033c0763f8226e28e79ba7ec9ccc39c715cea.tar.gz
crawl-ref-6f1033c0763f8226e28e79ba7ec9ccc39c715cea.zip
Basic cursesw input.
No direction keys yet...
Diffstat (limited to 'crawl-ref/source/libgui.cc')
-rw-r--r--crawl-ref/source/libgui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/libgui.cc b/crawl-ref/source/libgui.cc
index 2b474e7a60..81dee6c4d8 100644
--- a/crawl-ref/source/libgui.cc
+++ b/crawl-ref/source/libgui.cc
@@ -29,7 +29,7 @@
int m_getch()
{
- return getch();
+ return getchk();
}
void set_mouse_enabled(bool enabled)
@@ -154,7 +154,7 @@ int getch_ck()
return (tiles.getch_ck());
}
-int getch()
+int getchk()
{
return getch_ck();
}