You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.
#include "Wolfdef.h"/********************************** Stop the current song from playing**********************************/void StopSong(void){ PlaySong(0);}/********************************** Play a new song **********************************/void StartSong(Word songnum){ PlaySong(songnum); /* Stop the previous song (If any) */}