blob: 3b20a79f29504bbbd6bb221615a3b6a4bd7cc4d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef GUARD_SND_UTIL_H
#define GUARD_SND_UTIL_H
#include "nitro/types.h"
#define SND_VOL_DB_MIN (-723)
u16 SND_CalcRandom(void);
s8 SND_SinIdx(int index);
u16 SND_CalcChannelVolume(int value);
u16 SND_CalcTimer(int timer, int pitch);
extern const s16 SNDi_DecibelSquareTable[128];
#endif // GUARD_SND_UTIL_H
|