Hi Quentin,
I would love to preload all music files, but I am not sure how that works with Fmod_Load(). Is it possible to read some audio-files into an array and then selectively play them using Fmod_Play()? I think that Fmod_Play() only plays the file that is currently loaded, so whenever I need to play a different file, I have to use fmod_load(myfile$) first... Fmod_Play(myfile$) doesn't work, right?
Or is it possible to do something like this (last time I tried it didn't work):
Global m[]
Dim m[3]
m[0] = Fmod_Load("file1.mod")
m[1] = Fmod_Load("file2.mod")
m[2] = Fmod_Load("file3.mod")
Fmod_Play(m[1])
Hope you can help me out here. Thanks in advance :-) ! P.