diff options
| -rw-r--r-- | apps/gui/wps.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index b4ffe2a..39d71c8 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -546,10 +546,20 @@ static void next_track(void) static void play_hop(int direction) { struct wps_state *state = skin_get_global_state(); + struct cuesheet *cue = state->id3->cuesheet; long step = global_settings.skip_length*1000; long elapsed = state->id3->elapsed; long remaining = state->id3->length - elapsed; + /* if cuesheet is active, then we want the current tracks end instead of + * the total end */ + if (cue && (cue->curr_track_idx+1 < cue->track_count)) + { + int next = cue->curr_track_idx+1; + struct cue_track_info *t = &cue->tracks[next]; + remaining = t->offset - elapsed; + } + if (step < 0) { if (direction < 0) |