Files
mk64/src/audio/data.h
T
2022-04-16 23:11:40 -07:00

16 lines
321 B
C

#ifndef AUDIO_DATA_H
#define AUDIO_DATA_H
#include "internal.h"
#define AUDIO_LOCK_UNINITIALIZED 0
#define AUDIO_LOCK_NOT_LOADING 0x76557364
#define AUDIO_LOCK_LOADING 0x19710515
extern struct AdsrEnvelope gDefaultEnvelope[3];
// number of DMAs performed during this frame
extern s32 gCurrAudioFrameDmaCount;
#endif