summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cio.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-24 14:54:12 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-24 14:54:12 +0000
commitb1606bd733165bbfd914e19fe78cce2c343bc59b (patch)
tree6abb196ae505e376b40ef9345f84c3426a7feceb /crawl-ref/source/cio.cc
parent17c673c46bf3ad203eba73f9818933e307ded6d3 (diff)
downloadcrawl-ref-b1606bd733165bbfd914e19fe78cce2c343bc59b.tar.gz
crawl-ref-b1606bd733165bbfd914e19fe78cce2c343bc59b.zip
Fix clearing the map leaking information on magic mapped features.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10392 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/cio.cc')
-rw-r--r--crawl-ref/source/cio.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cio.cc b/crawl-ref/source/cio.cc
index b9ff80c25f..c420553b36 100644
--- a/crawl-ref/source/cio.cc
+++ b/crawl-ref/source/cio.cc
@@ -22,7 +22,7 @@ extern int unixcurses_get_vi_key(int keyin);
static keycode_type _numpad2vi(keycode_type key)
{
- switch(key)
+ switch (key)
{
case CK_UP: key = 'k'; break;
case CK_DOWN: key = 'j'; break;