# HG changeset patch # User nhjm449 # Date 1143691055 28800 # Node ID 1b919783797ee1b7349ea83a87ade901232835ff # Parent 12feaeb5ad5baa5f14ee1a9f2218c7d19cc93405 [svn] - should fix the ability to change songs while paused diff -r 12feaeb5ad5b -r 1b919783797e audacious/playlist.c --- a/audacious/playlist.c Wed Mar 29 07:37:10 2006 -0800 +++ b/audacious/playlist.c Wed Mar 29 19:57:35 2006 -0800 @@ -852,7 +852,9 @@ if (bmp_playback_get_playing()) { /* We need to stop before changing playlist_position */ PLAYLIST_UNLOCK(); + ip_data.stop = TRUE; bmp_playback_stop(); + ip_data.stop = FALSE; PLAYLIST_LOCK(); restart_playing = TRUE; } @@ -903,7 +905,9 @@ if (bmp_playback_get_playing()) { /* We need to stop before changing playlist_position */ PLAYLIST_UNLOCK(); + ip_data.stop = TRUE; bmp_playback_stop(); + ip_data.stop = FALSE; PLAYLIST_LOCK(); restart_playing = TRUE; }