# HG changeset patch # User nenolod # Date 1150373869 25200 # Node ID ece68ef26b94d03261e78be7c48c38ba60eb2b0f # Parent 5f09d64c61e2cff9a8d603d34598df7b7cc0bcc2 [svn] - we don't really have to unwire track 0 this way, as 0 will be selected by default if no subsong URI is given diff -r 5f09d64c61e2 -r ece68ef26b94 ChangeLog --- a/ChangeLog Thu Jun 15 05:07:23 2006 -0700 +++ b/ChangeLog Thu Jun 15 05:17:49 2006 -0700 @@ -1,3 +1,14 @@ +2006-06-15 12:07:23 +0000 William Pitcock + revision [1416] + - sort by Artist + + + Changes: Modified: + +52 -21 trunk/audacious/playlist.c + +1 -0 trunk/audacious/playlist.h + +13 -0 trunk/audacious/ui_playlist.c + + 2006-06-15 11:54:42 +0000 William Pitcock revision [1414] - use tuplecache to optimise title sorts diff -r 5f09d64c61e2 -r ece68ef26b94 Plugins/Input/console/Audacious_Driver.cpp --- a/Plugins/Input/console/Audacious_Driver.cpp Thu Jun 15 05:07:23 2006 -0700 +++ b/Plugins/Input/console/Audacious_Driver.cpp Thu Jun 15 05:17:49 2006 -0700 @@ -768,9 +768,6 @@ return ret; } - // do subsong stuff here - ret = FALSE; // dewire track 0 from this stuff - switch ( type ) { case type_nsf: load_file( tag, in, 0, NULL, (Nsf_Emu*) 0 ); break; @@ -785,7 +782,7 @@ if (emu == NULL) return FALSE; - for (int i = 0; i < emu->track_count(); i++) + for (int i = 1; i < emu->track_count(); i++) { gchar _buf[65535]; g_snprintf(_buf, 65535, "%s?%d", path2, i);