This commit is contained in:
2022-07-04 17:47:21 +00:00
parent c9f42184ef
commit de364d3538
2 changed files with 67 additions and 15 deletions

View File

@@ -18,11 +18,11 @@ enum MUS {
struct sound {
int sound;
int loop;
int mono;
int ch;
int fin;
int frame;
int play;
struct wav *w;
struct wav *data;
enum MUS state;
unsigned char volume;
};
@@ -31,6 +31,7 @@ struct wav {
int ch;
int samplerate;
int frames;
double gain;
void *data;
};