summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cio.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/cio.cc')
-rw-r--r--crawl-ref/source/cio.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/cio.cc b/crawl-ref/source/cio.cc
index 9e29f5c81f..2ffd89f8b7 100644
--- a/crawl-ref/source/cio.cc
+++ b/crawl-ref/source/cio.cc
@@ -16,7 +16,7 @@
#include <queue>
#ifdef UNIX
-static keycode_type numpad2vi(keycode_type key)
+static keycode_type _numpad2vi(keycode_type key)
{
if (key >= '1' && key <= '9')
{
@@ -42,13 +42,13 @@ int unmangle_direction_keys(int keyin, int km, bool fake_ctrl, bool fake_shift)
{
keyin = getchm(keymap);
// return control-key
- keyin = CONTROL(toupper(numpad2vi(keyin)));
+ keyin = CONTROL(toupper(_numpad2vi(keyin)));
}
else if (fake_shift && keyin == '/')
{
keyin = getchm(keymap);
// return shift-key
- keyin = toupper(numpad2vi(keyin));
+ keyin = toupper(_numpad2vi(keyin));
}
#else
// Old DOS keypad support