# HG changeset patch # User nenolod # Date 1154592154 25200 # Node ID 57ac83a145032f3fbb0d1ffe891299d2d44aee8b # Parent 045eea000f6e75195672d0d5b5acdbfff53ba3dc [svn] use -1 to indicate "drop the original cue file, but silently error" (not implemented in 1.1.x, but is backwards compatible -- also not yet implemented here. keyword YET) diff -r 045eea000f6e -r 57ac83a14503 ChangeLog --- a/ChangeLog Thu Aug 03 00:29:55 2006 -0700 +++ b/ChangeLog Thu Aug 03 01:02:34 2006 -0700 @@ -1,3 +1,12 @@ +2006-08-03 07:29:55 +0000 William Pitcock + revision [1880] + - implement finetune seeking properly this time :) + + + Changes: Modified: + +10 -3 trunk/Plugins/Input/cue/cuesheet.c + + 2006-08-03 07:20:53 +0000 William Pitcock revision [1878] - remove pointless finetune_seek stuff. didn't work right anyway, and it works better without it. diff -r 045eea000f6e -r 57ac83a14503 Plugins/Input/cue/cuesheet.c --- a/Plugins/Input/cue/cuesheet.c Thu Aug 03 00:29:55 2006 -0700 +++ b/Plugins/Input/cue/cuesheet.c Thu Aug 03 01:02:34 2006 -0700 @@ -98,12 +98,12 @@ if (!strncasecmp(ext, ".cue", 4)) { gint i; - ret = TRUE; + ret = -1; /* add the files, build cue urls, etc. */ cache_cue_file(filename); - for (i = 1; i < last_cue_track; i++) + for (i = 0; i < last_cue_track; i++) { gchar _buf[65535];