mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X: prevent signed/unsigned comparisons
This commit is contained in:
parent
f90eeb7861
commit
004ef3d451
|
@ -63,7 +63,7 @@ float VolumeAdjustBR;
|
||||||
float VolumeAdjustSL;
|
float VolumeAdjustSL;
|
||||||
float VolumeAdjustSR;
|
float VolumeAdjustSR;
|
||||||
float VolumeAdjustLFE;
|
float VolumeAdjustLFE;
|
||||||
int delayCycles;
|
unsigned int delayCycles;
|
||||||
|
|
||||||
bool postprocess_filter_enabled = true;
|
bool postprocess_filter_enabled = true;
|
||||||
bool postprocess_filter_dealias = false;
|
bool postprocess_filter_dealias = false;
|
||||||
|
|
|
@ -45,7 +45,7 @@ extern float VolumeAdjustBR;
|
||||||
extern float VolumeAdjustSL;
|
extern float VolumeAdjustSL;
|
||||||
extern float VolumeAdjustSR;
|
extern float VolumeAdjustSR;
|
||||||
extern float VolumeAdjustLFE;
|
extern float VolumeAdjustLFE;
|
||||||
extern int delayCycles;
|
extern unsigned int delayCycles;
|
||||||
|
|
||||||
struct Stereo51Out16DplII;
|
struct Stereo51Out16DplII;
|
||||||
struct Stereo51Out32DplII;
|
struct Stereo51Out32DplII;
|
||||||
|
|
|
@ -58,7 +58,7 @@ float VolumeAdjustBR;
|
||||||
float VolumeAdjustSL;
|
float VolumeAdjustSL;
|
||||||
float VolumeAdjustSR;
|
float VolumeAdjustSR;
|
||||||
float VolumeAdjustLFE;
|
float VolumeAdjustLFE;
|
||||||
int delayCycles;
|
unsigned int delayCycles;
|
||||||
|
|
||||||
bool postprocess_filter_enabled = 1;
|
bool postprocess_filter_enabled = 1;
|
||||||
bool postprocess_filter_dealias = false;
|
bool postprocess_filter_dealias = false;
|
||||||
|
|
Loading…
Reference in New Issue