# HG changeset patch # User nenolod # Date 1154587456 25200 # Node ID b5318012eb1bc50865f6b08634d39842abfc3d75 # Parent b22164c8eb51344191632d6c93ff578ba7b3511b [svn] - well not exactly, but this is :) diff -r b22164c8eb51 -r b5318012eb1b ChangeLog --- a/ChangeLog Wed Aug 02 23:42:10 2006 -0700 +++ b/ChangeLog Wed Aug 02 23:44:16 2006 -0700 @@ -1,3 +1,12 @@ +2006-08-03 06:42:10 +0000 William Pitcock + revision [1868] + - the other half of the equasion wrt seeking + + + Changes: Modified: + +20 -1 trunk/Plugins/Input/cue/cuesheet.c + + 2006-08-03 06:33:49 +0000 William Pitcock revision [1866] - support the notion of a watchdog function to keep things bound to the proper playlist entry. (half there) diff -r b22164c8eb51 -r b5318012eb1b Plugins/Input/cue/cuesheet.c --- a/Plugins/Input/cue/cuesheet.c Wed Aug 02 23:42:10 2006 -0700 +++ b/Plugins/Input/cue/cuesheet.c Wed Aug 02 23:44:16 2006 -0700 @@ -283,16 +283,16 @@ cur_cue_track--; playlist_prev(); watchdog_func(NULL); + finetune_seek = time; } else if (cur_cue_track != last_cue_track && (time > cue_tracks[cur_cue_track + 1].index)) { cur_cue_track++; playlist_next(); watchdog_func(NULL); + finetune_seek = time; } - finetune_seek = time; - return TRUE; }