mirror of
https://github.com/Blzut3/Wolf3D-Mac.git
synced 2024-11-24 18:32:30 +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) */
|
|
}
|