NO3D Error.

Started by KevC,

KevC

Hi, I am getting NO3D error code 21 when using the code below.  I am using a Creative Audigy card...does it really not support this feature?

Bass.BASS_Init(-1, 44100, BASSInit.BASS_DEVICE_MONO, IntPtr.Zero);

_BASSStream = Bass.BASS_StreamCreatePush(44100, 1, BASSFlag.BASS_SAMPLE_FLOAT | BASSFlag.BASS_SAMPLE_3D, IntPtr.Zero);

Thank you.

Ian @ un4seen

That looks like an old BASS.DLL version may be loaded. Please check with BASS_GetVersion. Before BASS 2.4.16, you would need to include the BASS_DEVICE_3D flag in your BASS_Init call, but that isn't necessary any more.

KevC

Thanks Iain, ill give that a check.