summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-09-26 17:08:02 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-09-26 17:08:02 +0200
commit488cd6ebaabc3c38cd034cec52aea96c90cc557b (patch)
tree7ba6bd39a740df2bbb6b5190fa61426d5d01cba8 /main.c
parent93cd49edc699fbb0bf7432a00623751e06cd86dc (diff)
fixed seeking during pause
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c
index eb1deec8..29ede358 100644
--- a/main.c
+++ b/main.c
@@ -91,6 +91,7 @@ update_songinfo (void) {
float songpos = last_songpos;
if (p_ispaused ()) {
strcpy (sbtext_new, "Paused");
+ songpos = streamer_get_playpos ();
}
else if (p_isstopped ()) {
strcpy (sbtext_new, "Stopped");