# HG changeset patch # User nenolod # Date 1138168060 28800 # Node ID e52d8e22e718206b99a5ec7752c10f2fb0ca520c # Parent a371216b5c8af0828aa2fe0829e244674d223ac4 [svn] Input buffers are always 3 seconds ahead of what you hear... compensate for this. diff -r a371216b5c8a -r e52d8e22e718 Plugins/Input/console/Audacious_Driver.cpp --- a/Plugins/Input/console/Audacious_Driver.cpp Tue Jan 24 21:34:46 2006 -0800 +++ b/Plugins/Input/console/Audacious_Driver.cpp Tue Jan 24 21:47:40 2006 -0800 @@ -637,7 +637,7 @@ static int get_time(void) { - return console_ip_is_going ? track_emu.tell() : -1; + return console_ip_is_going ? (track_emu.tell() - 3000 >= 0 ? track_emu.tell() - 3000 : 0) : -1; } // Setup