LoadSound troubles

BlitzMax Forums/BlitzMax Programming/LoadSound troubles

i having a bit of trouble getting a sound to load. the only thing LoadSound returns is a null. the code is pretty straightforward:
SuperStrict

Framework BRL.Basic
Import BRL.Audio

If FileType("impactlarge.wav")=1 Then
	Local sound:TSound=LoadSound("impactlarge.wav",True)
	PlaySound sound
EndIf

the sound is from the samples and works fine in media player. i have tried other sounds too and they all fail. is there something im not including in my project that this relies upon? i have successfully run samples with sound.

any thoughts would be appreciated.

thx.

import BRL.WAVLoader ??

oooh duh! thx :)

np, we all do it.... ;)