Commit | Line | Data |
---|---|---|
3154bfab | 1 | // user settings |
2 | ||
3 | typedef struct | |
4 | { | |
5 | int iVolume; | |
6 | int iXAPitch; | |
7 | int iUseReverb; | |
8 | int iUseInterpolation; | |
9 | int iTempo; | |
210476c7 | 10 | int idiablofix; |
63a4f6b6 | 11 | int iUseThread; |
1e0eac23 | 12 | int iUseFixedUpdates; // output fixed number of samples/frame |
3bd31caf | 13 | |
14 | // status | |
15 | int iThreadAvail; | |
3154bfab | 16 | } SPUConfig; |
17 | ||
18 | extern SPUConfig spu_config; |