# HG changeset patch # User William Pitcock # Date 1192349849 18000 # Node ID 2f62797aba22afe7a052ae553a57149671e37653 # Parent 0803fba87da8b33dc4f16b08712c2adb3e9a962d more work here diff -r 0803fba87da8 -r 2f62797aba22 src/cue/cuesheet.c --- 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; }