Index: uspace/srv/fb/msim.c
===================================================================
--- uspace/srv/fb/msim.c	(revision 113c677dd068aaac3c6548693836c1980ffa5b14)
+++ uspace/srv/fb/msim.c	(revision 2a513972e478d8d6c6d501f4bc21fa22fbde43f6)
@@ -138,5 +138,11 @@
 	
 	client_connected = 1;
-	ipc_answer_0(iid, EOK); 
+	ipc_answer_0(iid, EOK);
+	
+	/* Clear the terminal, set scrolling region
+	   to 0 - 25 lines */
+	msim_clrscr();
+	msim_goto(0, 0);
+	msim_puts("\033[0;25r");
 	
 	while (true) {
@@ -214,11 +220,4 @@
 	
 	async_set_client_connection(msim_client_connection);
-
-	/* Clear the terminal, set scrolling region
-	   to 0 - 25 lines */
-	msim_clrscr();
-	msim_goto(0, 0);
-	msim_puts("\033[0;25r");
-
 	return 0;
 }
