Mercurial > audlegacy-plugins
diff src/cue/cuesheet.c @ 2061:2f62797aba22
more work here
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Sun, 14 Oct 2007 03:17:29 -0500 |
| parents | fffa7e3d39e0 |
| children | c8ba6764985d |
line wrap: on
line diff
--- a/src/cue/cuesheet.c Sun Oct 14 03:14:20 2007 -0500 +++ b/src/cue/cuesheet.c Sun Oct 14 03:17:29 2007 -0500 @@ -664,7 +664,7 @@ #ifdef DEBUG g_print("cue: next_track: target_time = %d\n", target_time); #endif - if(cfg.stopaftersong) { + if(aud_cfg->stopaftersong) { g_idle_add_full(G_PRIORITY_HIGH, do_stop, (void *)real_ip, NULL); continue; } @@ -684,7 +684,7 @@ #ifdef DEBUG g_print("i: watchdog eof reached\n\n"); #endif - if(cfg.repeat) { + if(aud_cfg->repeat) { static gint incr = 0; incr = -pos; g_idle_add_full(G_PRIORITY_HIGH , do_setpos, &incr, NULL); @@ -696,7 +696,7 @@ } } else { - if(cfg.stopaftersong) { + if(aud_cfg->stopaftersong) { g_idle_add_full(G_PRIORITY_HIGH, do_stop, (void *)real_ip, NULL); continue; }
