changeset 1478:b5318012eb1b trunk

[svn] - well not exactly, but this is :)
author nenolod
date Wed, 02 Aug 2006 23:44:16 -0700
parents b22164c8eb51
children 825349772a96
files ChangeLog Plugins/Input/cue/cuesheet.c
diffstat 2 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <nenolod@nenolod.net>
+  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 <nenolod@nenolod.net>
   revision [1866]
   - support the notion of a watchdog function to keep things bound to the proper playlist entry. (half there)
--- 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;
 }