# HG changeset patch # User giacomo # Date 1154993671 25200 # Node ID 3483fb26b9fb587921a491cdd67b4baa74f10ee7 # Parent 56818382846e8079b4d87bb8190ce2f976d4eada [svn] - when audacious is started and track detail on current song are requested, try to check if a decoder exists before falling back to the tuple display dialog diff -r 56818382846e -r 3483fb26b9fb ChangeLog --- a/ChangeLog Mon Aug 07 04:19:43 2006 -0700 +++ b/ChangeLog Mon Aug 07 16:34:31 2006 -0700 @@ -1,3 +1,11 @@ +2006-08-07 11:19:43 +0000 Tony Vroon + revision [1944] + Endianness fix by Luca Barbato . + + Changes: Modified: + +3 -1 trunk/Plugins/Input/sexypsf/PsxMem.h + + 2006-08-07 09:26:07 +0000 William Pitcock revision [1942] - indentation cleanups diff -r 56818382846e -r 3483fb26b9fb audacious/playlist.c --- a/audacious/playlist.c Mon Aug 07 04:19:43 2006 -0700 +++ b/audacious/playlist.c Mon Aug 07 16:34:31 2006 -0700 @@ -2181,7 +2181,7 @@ { entry = node->data; tuple = entry->tuple; - path = g_strdup(entry->filename); + path = g_strdup(entry->filename); } PLAYLIST_UNLOCK(); @@ -2224,7 +2224,9 @@ if (playlist_get() && playlist_position) { path = g_strdup(playlist_position->filename); - tuple = playlist_position->tuple; + if ( playlist_position->tuple == NULL ) + playlist_entry_get_info(playlist_position); + tuple = playlist_position->tuple; } PLAYLIST_UNLOCK();