mirror of
https://github.com/Blzut3/Wolf3D-Mac.git
synced 2025-02-17 23:30:23 +00:00
1 line
358 B
C
1 line
358 B
C
|
#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) */
}
|