Fixed BASSMODS seeking

This commit is contained in:
Chris Moeller 2014-07-06 22:18:15 -07:00
parent 75c565da0d
commit e3bc17302a

View file

@ -210,7 +210,7 @@ static void SyncProc( HSYNC handle, DWORD channel, DWORD data, void *user )
pos = 0;
}
BASS_ChannelSetPosition( music, (frame - pos) * (sizeof(float) * 2), BASS_POS_BYTE | BASS_POS_DECODETO );
BASS_ChannelSetPosition( music, frame * (sizeof(float) * 2), BASS_POS_BYTE | BASS_POS_DECODETO );
return frame;
}