Index: uspace/app/tetris/input.c
===================================================================
--- uspace/app/tetris/input.c	(revision c98e6ee244a8e271a395a052069c23bca4f8b538)
+++ uspace/app/tetris/input.c	(revision 5719f6ddbbd629f7eb5c571fcbcbd7a87a3565c7)
@@ -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);
