summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars-Dominik Braun <PromyLOPh@lavabit.com>2008-09-09 13:25:13 +0200
committerLars-Dominik Braun <PromyLOPh@lavabit.com>2008-09-09 13:25:13 +0200
commita0235218909a33adbdc6eb4eb3afff2911a5987b (patch)
treec3c25c36d7be002222be55db5b09bb63d8eaad70 /src
parentbdf53282f3f2a20ff1b112469e1c1266a0563d11 (diff)
downloadpianobar-a0235218909a33adbdc6eb4eb3afff2911a5987b.tar.gz
pianobar-a0235218909a33adbdc6eb4eb3afff2911a5987b.tar.bz2
pianobar-a0235218909a33adbdc6eb4eb3afff2911a5987b.zip
Don't poll *that* often
Diffstat (limited to 'src')
-rw-r--r--src/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 00e94ca..ae19c62 100644
--- a/src/main.c
+++ b/src/main.c
@@ -204,7 +204,10 @@ int main (int argc, char **argv) {
}
/* in the meantime: wait for user actions */
- if (poll (&polls, 1, 1000) > 0) {
+ /* 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) {
read (fileno (stdin), &buf, sizeof (buf));
curShortcut = settings.keys;
while (curShortcut != NULL) {