aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authornotaz2011-07-30 02:42:28 +0300
committernotaz2011-08-01 23:07:01 +0300
commit381ea10346ab85b2f2d46f33d28461211e239c0a (patch)
tree837f4eec4b1940ac940603793e6faf7eee993642 /frontend
parent1775933abd26d2e282c4e0b4093778d204a0038d (diff)
downloadpcsx_rearmed-381ea10346ab85b2f2d46f33d28461211e239c0a.tar.gz
pcsx_rearmed-381ea10346ab85b2f2d46f33d28461211e239c0a.tar.bz2
pcsx_rearmed-381ea10346ab85b2f2d46f33d28461211e239c0a.zip
spu: some misc refactoring/cleanup
Diffstat (limited to 'frontend')
-rw-r--r--frontend/menu.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/menu.c b/frontend/menu.c
index 2b9c155..1bfac1d 100644
--- a/frontend/menu.c
+++ b/frontend/menu.c
@@ -1083,14 +1083,13 @@ static int menu_loop_plugin_gpu(int id, int keys)
return 0;
}
-static const char *men_spu_reverb[] = { "Off", "Fake", "On", NULL };
static const char *men_spu_interp[] = { "None", "Simple", "Gaussian", "Cubic", NULL };
static const char h_spu_irq_wait[] = "Wait for CPU (recommended set to ON)";
static const char h_spu_thread[] = "Run sound emulation in main thread (recommended)";
static menu_entry e_menu_plugin_spu[] =
{
- mee_enum ("Reverb", 0, iUseReverb, men_spu_reverb),
+ mee_onoff ("Reverb", 0, iUseReverb, 2),
mee_enum ("Interpolation", 0, iUseInterpolation, men_spu_interp),
mee_onoff ("Adjust XA pitch", 0, iXAPitch, 1),
mee_onoff_h ("SPU IRQ Wait", 0, iSPUIRQWait, 1, h_spu_irq_wait),