Mercurial > audlegacy
changeset 1484:57ac83a14503 trunk
[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)
author | nenolod |
---|---|
date | Thu, 03 Aug 2006 01:02:34 -0700 |
parents | 045eea000f6e |
children | eff9a84c54bf |
files | ChangeLog Plugins/Input/cue/cuesheet.c |
diffstat | 2 files changed, 11 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@nenolod.net> + 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 <nenolod@nenolod.net> revision [1878] - remove pointless finetune_seek stuff. didn't work right anyway, and it works better without it.
--- 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];