summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-14 18:39:53 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-14 18:39:53 +0000
commitb5cb57470c1ee90433ee657d807c543749fc5ce6 (patch)
tree73675800d27f34d968948ce4a6db956f4a3ee29e /crawl-ref/source/macro.cc
parent8509ab3cd1b2ad8f86a39767f87e41fe6f33b329 (diff)
downloadcrawl-ref-b5cb57470c1ee90433ee657d807c543749fc5ce6.tar.gz
crawl-ref-b5cb57470c1ee90433ee657d807c543749fc5ce6.zip
Attempt to fix [1850593] by reverting r3020, as getch_ck() acts
differently under Windows and Unix-line systems. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3063 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/macro.cc')
-rw-r--r--crawl-ref/source/macro.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/macro.cc b/crawl-ref/source/macro.cc
index 4ed27f7569..a87e86172d 100644
--- a/crawl-ref/source/macro.cc
+++ b/crawl-ref/source/macro.cc
@@ -640,7 +640,7 @@ static keyseq getch_mul( int (*rgetch)() = NULL )
}
if (!rgetch)
- rgetch = c_getch;
+ rgetch = m_getch;
keys.push_back( a = rgetch() );