It depends on how you've written it as there are a number of different ways to do it.
What do your load command lines say? Are you loading them all into memory at the start or loading them as they are needed? Are you selecting them to play/load randomly?
So, here's a few suggestions which may or may not apply:
* Make sure the music files are in the same directory as the .DBA file, (changing the LOAD command lines so they just have the filename in it and no path).
* Try using only one memory slot and re-use it by loading the next song into it when required. I've had problems before with something similar to this but I can't remember exactly what it was.
You
can do:
Load Music "Filename1.mp3",1
Load Music "Filename2.mp3",2
Load Music "Filename3.mp3",3
Play Music 1
when finished...
Play Music 2
when finished...
Play Music 3
... or select the numbers randomly.
Or, you can do this:
Load Music "Filename1.mp3",1
Play Music 1
when finished...
Load Music "Filename2.mp3",1
Play Music 1
...and so on.
The problem is that I can't remember which one had the problem and which one I subsequently used!
Either way, you are better off
not having the song files in sub-folders.
TDK_Man