# HG changeset patch # User chainsaw # Date 1179790495 25200 # Node ID 61723217c8cc67b91ac00512dced35388f1a6d64 # Parent 0f2f68b9c98c9da0dab19ebfed8b494b64279774 [svn] Isn't that cute. But it's WRONG diff -r 0f2f68b9c98c -r 61723217c8cc ChangeLog --- a/ChangeLog Mon May 21 16:32:42 2007 -0700 +++ b/ChangeLog Mon May 21 16:34:55 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-21 23:32:42 +0000 Tony Vroon + revision [2268] + dnl CD-Audio New Generation; you need to add cdaudio-ng to INPUT_PLUGINS if CDIO_LIBS is set. Or something like that. Good luck. + trunk/configure.ac | 2 ++ + trunk/src/modplug/modplug.cxx | 4 ++-- + 2 files changed, 4 insertions(+), 2 deletions(-) + + 2007-05-21 23:18:14 +0000 Tony Vroon revision [2266] .so != .c and lack of sleep is not an excuse. diff -r 0f2f68b9c98c -r 61723217c8cc src/modplug/modplug.cxx --- a/src/modplug/modplug.cxx Mon May 21 16:32:42 2007 -0700 +++ b/src/modplug/modplug.cxx Mon May 21 16:34:55 2007 -0700 @@ -251,8 +251,8 @@ int maxtime = file->mSoundFile.GetSongTime() * 1000; float postime; - if(millisecond >= maxtime) - millisecond = maxtime - 3000; + if(millisecond > maxtime) + millisecond = maxtime; maxpos = file->mSoundFile.GetMaxPosition(); postime = (float)maxpos / (float)maxtime;