Author Topic: Error in BASS.PAS  (Read 2959 times)

Irrational86

  • Posts: 960
Error in BASS.PAS
« on: 16 Jun '03 - 05:36 »
I dont know if anyone has noticed, but i just noticed this looking around the values of each BASS_SAMPLE_XXXXX flag and BASS_MUSIC_XXXXX flag, take a look at the following:
Code: [Select]
 BASS_SAMPLE_OVER_POS    = $20000; // override longest playing

 BASS_MP3_SETPOS         = $20000; // enable pin-point seeking on the MP3/MP2/MP1

Both are constants and have the same values, Ian, are you aware of this??

Ian @ un4seen

  • Administrator
  • Posts: 24940
Re: Error in BASS.PAS
« Reply #1 on: 16 Jun '03 - 13:20 »
Yep... BASS_SAMPLE_OVER_POS only applies to BASS_SampleLoad/Create, while BASS_MP3_SETPOS only applies to BASS_StreamCreateFile.

Irrational86

  • Posts: 960
Re: Error in BASS.PAS
« Reply #2 on: 17 Jun '03 - 02:01 »
Oh, ok ok...