Quick question(s) about the inner workings of the sound system:
If I load a sound and want to replace/reload it afterwards while the program is running, do I first need to unload e.g. sound '0' to replace it?
Code: Select all
LoadSound(0, "a.wav")
LoadSound(0, "b.wav")Code: Select all
for i = 1 to 999
SetSoundFrequency(0, #FreHigh)
SetSoundFrequency(0, #FreLow)
next
