diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-02-24 19:40:45 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-02-24 19:40:45 +0000 |
| commit | 2ac91dcd98ec663a0280ea6c787954f36db3ba89 (patch) | |
| tree | e19f70bc20fdbd6a031014c0ba7c831888cb45ac /apps/dsp.c | |
| parent | 9502021590fae30155e8a7ae1abebf7d610488d3 (diff) | |
| download | rockbox-2ac91dcd98ec663a0280ea6c787954f36db3ba89.zip rockbox-2ac91dcd98ec663a0280ea6c787954f36db3ba89.tar.gz rockbox-2ac91dcd98ec663a0280ea6c787954f36db3ba89.tar.bz2 rockbox-2ac91dcd98ec663a0280ea6c787954f36db3ba89.tar.xz | |
Kill some global variables
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24888 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/dsp.c')
| -rw-r--r-- | apps/dsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -218,8 +218,8 @@ static int treble; /* A/V */ /* Settings applicable to audio codec only */ static int32_t pitch_ratio = PITCH_SPEED_100; static int channels_mode; - long dsp_sw_gain; - long dsp_sw_cross; +static long dsp_sw_gain; +static long dsp_sw_cross; static bool dither_enabled; static long eq_precut; static long track_gain; |