# HG changeset patch # User nenolod # Date 1166149461 28800 # Node ID 66e09ad0944e4d4083864fb36652b12f96612ef8 # Parent 53056ce7940d6d5a515c5b4f3e1bda36fed6314a [svn] - really fix HES/other multitrack this time diff -r 53056ce7940d -r 66e09ad0944e ChangeLog --- a/ChangeLog Thu Dec 14 18:12:13 2006 -0800 +++ b/ChangeLog Thu Dec 14 18:24:21 2006 -0800 @@ -1,3 +1,11 @@ +2006-12-15 02:12:13 +0000 William Pitcock + revision [834] + - avoid opening VFS FDs for track URIs where we know that the file is valid + + trunk/src/console/Audacious_Driver.cxx | 5 +++++ + 1 file changed, 5 insertions(+) + + 2006-12-15 02:08:50 +0000 William Pitcock revision [832] - change use of printf to g_warning() and g_critical() where appropriate. diff -r 53056ce7940d -r 66e09ad0944e src/console/Audacious_Driver.cxx --- a/src/console/Audacious_Driver.cxx Thu Dec 14 18:12:13 2006 -0800 +++ b/src/console/Audacious_Driver.cxx Thu Dec 14 18:24:21 2006 -0800 @@ -430,6 +430,11 @@ } } } + else if (fh.track_specified) + { + result = 1; + } + return result; }