Have started creating the menu for the game with some music playing in the background before starting.
The LOOP MUSIC command though only plays once then stops; have looked around the forums but have not actually come across an explanation.
Can anyone let me know if there is anything I am missing? The initial code snippet is below:
//
// Display the main game menu
//
function displayMenu()
// Play the intro music
loop music mscIntro
set text size 50
center text centreX, 50, "Rong"
center text centreX, 120, "Any key to start..."
sync; sync
wait key
stop music mscIntro
cls
endfunction