mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Better comments for musicdef struct
This commit is contained in:
parent
5f8671b100
commit
0a4d0ecc5c
1 changed files with 8 additions and 3 deletions
|
@ -188,15 +188,20 @@ boolean S_MusicExists(const char *mname, boolean checkMIDI, boolean checkDigi);
|
|||
// Set Speed of Music
|
||||
boolean S_SpeedMusic(float speed);
|
||||
|
||||
// Music credits
|
||||
// Music definitions
|
||||
typedef struct musicdef_s
|
||||
{
|
||||
char name[7];
|
||||
char title[32];
|
||||
char alttitle[64];
|
||||
//char usage[256]; -- probably never going to be relevant to vanilla but was in kart's struct
|
||||
//char source[256]; -- ditto
|
||||
char authors[256];
|
||||
//char usage[256]; -- probably never going to be relevant to vanilla
|
||||
/*
|
||||
the trouble here is that kart combines what we call "title"
|
||||
and "authors" into one string. we need to split it for sound
|
||||
test reasons. they might split it later like we did, but...
|
||||
*/
|
||||
//char source[256];
|
||||
UINT8 soundtestpage;
|
||||
INT16 soundtestcond; // +ve for map, -ve for conditionset, 0 for already here
|
||||
tic_t stoppingtics;
|
||||
|
|
Loading…
Reference in a new issue