merge from libretro fork
[pcsx_rearmed.git] / plugins / dfsound / spu_config.h
CommitLineData
7a8d521f 1#ifndef __P_SPU_CONFIG_H__
2#define __P_SPU_CONFIG_H__
3
3154bfab 4// user settings
5
6typedef struct
7{
8 int iVolume;
9 int iXAPitch;
10 int iUseReverb;
11 int iUseInterpolation;
12 int iTempo;
63a4f6b6 13 int iUseThread;
1e0eac23 14 int iUseFixedUpdates; // output fixed number of samples/frame
3bd31caf 15
16 // status
17 int iThreadAvail;
3154bfab 18} SPUConfig;
19
20extern SPUConfig spu_config;
7a8d521f 21
22#endif /* __P_SPU_CONFIG_H__ */