Index: uspace/app/modplay/modplay.c
===================================================================
--- uspace/app/modplay/modplay.c	(revision c21d4d64870698b91707f203def6398db79bff84)
+++ uspace/app/modplay/modplay.c	(revision 36795edf59b53d3f30384d83e6a8042eec3ea891)
@@ -174,6 +174,10 @@
 	while (true) {
 		timeout = 0;
-		if (console_get_event_timeout(con, &event, &timeout))
+		rc = console_get_event_timeout(con, &event, &timeout);
+		if (rc == EOK)
 			modplay_event(&event);
+		else if (rc != ETIMEOUT)
+			break;
+
 		if (quit)
 			break;
