# HG changeset patch # User jerome # Date 1166264415 28800 # Node ID 6bfa0777a57a45a71b916c2b08748ca017cbfeba # Parent 7ce26ebe8b6ad0defb6cd26cfb33c7a349386ed7 [svn] Fixed a bug where xmms_remote_jump_to_time was called with seconds instead of milliseconds. diff -r 7ce26ebe8b6a -r 6bfa0777a57a ChangeLog --- a/ChangeLog Fri Dec 15 21:18:34 2006 -0800 +++ b/ChangeLog Sat Dec 16 02:20:15 2006 -0800 @@ -1,3 +1,11 @@ +2006-12-16 05:18:34 +0000 William Pitcock + revision [3277] + - don't use deprecated function playlist_get(). + + trunk/audacious/mainwin.c | 30 ++++++++++++++++-------------- + 1 file changed, 16 insertions(+), 14 deletions(-) + + 2006-12-16 05:14:16 +0000 William Pitcock revision [3275] - log a warning if deprecated functions from <= 1.2 are used diff -r 7ce26ebe8b6a -r 6bfa0777a57a audtool/audtool.c --- a/audtool/audtool.c Fri Dec 15 21:18:34 2006 -0800 +++ b/audtool/audtool.c Sat Dec 16 02:20:15 2006 -0800 @@ -356,8 +356,8 @@ return; } - oldtime = xmms_remote_get_output_time(session) / 1000; - diff = atoi(argv[2]); + oldtime = xmms_remote_get_output_time(session); + diff = atoi(argv[2]) * 1000; newtime = oldtime + diff; xmms_remote_jump_to_time(session, newtime);