Fixed BASSMODS backward jumps counting toward loops

CQTexperiment
Chris Moeller 2014-07-07 20:19:29 -07:00
parent e3bc17302a
commit 05f57e9009
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ static void SyncProc( HSYNC handle, DWORD channel, DWORD data, void *user )
else if ([resampling isEqualToString:@"sinc"])
resampling_int = 2;
music = BASS_MusicLoad( 1, data, 0, size, BASS_SAMPLE_FLOAT | BASS_SAMPLE_LOOP | BASS_MUSIC_RAMP | BASS_MUSIC_PRESCAN | BASS_MUSIC_DECODE | (resampling_int == 0 ? BASS_MUSIC_NONINTER : ((resampling_int == 2) ? BASS_MUSIC_SINCINTER : 0)), 44100 );
music = BASS_MusicLoad( 1, data, 0, size, BASS_SAMPLE_FLOAT | BASS_SAMPLE_LOOP | BASS_MUSIC_STOPBACK | BASS_MUSIC_RAMP | BASS_MUSIC_PRESCAN | BASS_MUSIC_DECODE | (resampling_int == 0 ? BASS_MUSIC_NONINTER : ((resampling_int == 2) ? BASS_MUSIC_SINCINTER : 0)), 44100 );
if ( !music )
{