How To

Why is this glitching?

1

CubicleHead 2021-04-26 13:36

I tried making a semi-full length version of the progress song but it was too long to fit on one song so i split it into four roms the problem is whenever i run it it just plays little click noises and occasionally a short tune
is there something wrong with the code or the way that i split the song?


Timo 2021-04-26 17:56

It should be
SOUND SOURCE ROM(10)
You miss the ROM. Otherwise it probably tries to play the default font ;)

The parameter of SOUND SOURCE is a memory address. You can put a specific address, but it’s usually not what you want. The ROM function returns the address of a ROM entry.


CubicleHead 2021-04-26 19:49

ah... thanks!


Log in to reply.