blob: fce1cdaae6c1debc55dfa74cc9c05bb61ddb8e19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// user settings
typedef struct
{
int iVolume;
int iXAPitch;
int iUseReverb;
int iUseInterpolation;
int iTempo;
int iUseThread;
// status
int iThreadAvail;
} SPUConfig;
extern SPUConfig spu_config;
|