Author Topic: NO3D Error.  (Read 140 times)

KevC

  • Posts: 22
NO3D Error.
« on: 28 Jul '24 - 00:04 »
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?

Code: [Select]
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

  • Administrator
  • Posts: 26033
Re: NO3D Error.
« Reply #1 on: 29 Jul '24 - 12:54 »
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

  • Posts: 22
Re: NO3D Error.
« Reply #2 on: 29 Jul '24 - 21:58 »
Thanks Iain, ill give that a check.