notaz.gp2x.de
/
pcsx_rearmed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge pull request #443 from negativeExponent/add-header-guards
[pcsx_rearmed.git]
/
plugins
/
dfsound
/
spu_config.h
1
#ifndef __P_SPU_CONFIG_H__
2
#define __P_SPU_CONFIG_H__
3
4
// user settings
5
6
typedef struct
7
{
8
int iVolume;
9
int iXAPitch;
10
int iUseReverb;
11
int iUseInterpolation;
12
int iTempo;
13
int idiablofix;
14
int iUseThread;
15
int iUseFixedUpdates; // output fixed number of samples/frame
16
17
// status
18
int iThreadAvail;
19
} SPUConfig;
20
21
extern SPUConfig spu_config;
22
23
#endif /* __P_SPU_CONFIG_H__ */