diff options
| -rw-r--r-- | src/main.c | 5 | 
1 files changed, 1 insertions, 4 deletions
| @@ -204,10 +204,7 @@ int main (int argc, char **argv) {  		}  		/* in the meantime: wait for user actions */ -		/* FIXME: uhm, this may work, but I guess there's a better solution. */ -		if (poll (&polls, 1, (player.mode >= PLAYER_INITIALIZED && -				player.mode < PLAYER_FINISHED_PLAYBACK && -				player.doPause == 0 ? 1000 : -1)) > 0) { +		if (poll (&polls, 1, 1000) > 0) {  			read (fileno (stdin), &buf, sizeof (buf));  			curShortcut = settings.keys;  			while (curShortcut != NULL) { | 
