summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-03-28 20:47:15 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-03-28 20:47:15 +0200
commit08efabd74e3620e64f77bc56a4af12edfd800845 (patch)
treeb51f1afde2aca65df9ea400d383b6cfdf79b37bf /crawl-ref/source/tutorial.cc
parent35a68435d9c7c94d5a1bc03ba9ec925dfe28e45b (diff)
downloadcrawl-ref-08efabd74e3620e64f77bc56a4af12edfd800845.tar.gz
crawl-ref-08efabd74e3620e64f77bc56a4af12edfd800845.zip
Replace c_getch by getch_ck.
It was always just getch_ck for our current platforms, except for Windows tiles, which seems like an accident more than anything else.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index c06e8e473b..9078bb0993 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -156,7 +156,7 @@ bool pick_tutorial()
while (true)
{
- char keyn = c_getch();
+ char keyn = getch_ck();
// Random choice.
if (keyn == '*' || keyn == '+' || keyn == '!' || keyn == '#')
@@ -773,7 +773,7 @@ void tut_starting_screen()
if (i < 2)
{
#ifndef USE_TILE
- ch = c_getch();
+ ch = getch_ck();
#else
mouse_control mc(MOUSE_MODE_MORE);
ch = getchm();