summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/macro.cc')
-rw-r--r--crawl-ref/source/macro.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/macro.cc b/crawl-ref/source/macro.cc
index f2fd7cad82..5c9b2a9030 100644
--- a/crawl-ref/source/macro.cc
+++ b/crawl-ref/source/macro.cc
@@ -1243,19 +1243,18 @@ static std::string _special_keys_to_string(int key)
std::string cmd = "";
- int newkey = key;
if (shift)
{
- newkey -= (CK_SHIFT_UP - CK_UP);
+ key -= (CK_SHIFT_UP - CK_UP);
cmd = "Shift-";
}
else if (ctrl)
{
- newkey -= (CK_CTRL_UP - CK_UP);
+ key -= (CK_CTRL_UP - CK_UP);
cmd = "Ctrl-";
}
- switch (newkey)
+ switch (key)
{
case CK_ENTER: cmd += "Enter"; break;
case CK_BKSP: cmd += "Backspace"; break;