Index: uspace/app/tetris/input.c
===================================================================
--- uspace/app/tetris/input.c	(revision f93f1689b424f33048541ffe5740a07867076862)
+++ uspace/app/tetris/input.c	(revision 4541ae41d7ce895a89a42a784040f0156fb8e79d)
@@ -97,4 +97,5 @@
 	static ipc_call_t charcall;
 	ipcarg_t rc;
+	int cons_phone;
 
 	/*
@@ -111,6 +112,9 @@
 
 	if (!lastchar) {
-		if (!getchar_inprog)
-			getchar_inprog = async_send_2(1,CONSOLE_GETCHAR,0,0,&charcall);
+		if (!getchar_inprog) {
+			cons_phone = get_cons_phone();
+			getchar_inprog = async_send_2(cons_phone,
+			    CONSOLE_GETCHAR, 0, 0, &charcall);
+		}
 		if (!s) 
 			async_wait_for(getchar_inprog, &rc);
