summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 261b328e44..c069315785 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -1451,7 +1451,7 @@ void process_command( command_type cmd )
mpr("Change to (d)efault, (n)othing, (f)riend-dropped, (p)layer, "
"or (a)ll? ", MSGCH_PROMPT);
- char type = (char) getchm(KC_DEFAULT);
+ char type = (char) getchm(KMC_DEFAULT);
type = tolower(type);
if (type == 'd')
@@ -2885,7 +2885,7 @@ static command_type _keycode_to_command( keycode_type key )
case KEY_REPEAT_KEYS: return CMD_REPEAT_KEYS;
default:
- return key_to_command(key, KC_DEFAULT);
+ return key_to_command(key, KMC_DEFAULT);
}
}