diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2013-04-22 20:55:47 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2013-04-22 20:55:47 -0400 |
commit | 4f2c0c1ed2c869f79e6cd6df3e346cdb0adce0fd (patch) | |
tree | 13cbae73ee14254e06fcf22694e6cf3726f6dde6 /firmware | |
parent | e61e9c61d0ba6990576d59efca07afa13fd97566 (diff) | |
download | rockbox-4f2c0c1ed2c869f79e6cd6df3e346cdb0adce0fd.tar.gz rockbox-4f2c0c1ed2c869f79e6cd6df3e346cdb0adce0fd.zip |
Oops. Revert a pointless change.
Change-Id: I082411145a411ca7d41b359dea419ef8190d70ce
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/drivers/audio/sdl.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/firmware/drivers/audio/sdl.c b/firmware/drivers/audio/sdl.c index f35cec8cb7..9bb399b910 100644 --- a/firmware/drivers/audio/sdl.c +++ b/firmware/drivers/audio/sdl.c | |||
@@ -23,12 +23,6 @@ | |||
23 | #include "config.h" | 23 | #include "config.h" |
24 | #include "sound.h" | 24 | #include "sound.h" |
25 | #include "pcm_sampr.h" | 25 | #include "pcm_sampr.h" |
26 | #if CONFIG_CODEC == SWCODEC | ||
27 | #include "fixedpoint.h" | ||
28 | #ifdef HAVE_SW_VOLUME_CONTROL | ||
29 | #include "pcm_sw_volume.h" | ||
30 | #endif | ||
31 | #endif | ||
32 | 26 | ||
33 | /** | 27 | /** |
34 | * Audio Hardware api. Make them do nothing as we cannot properly simulate with | 28 | * Audio Hardware api. Make them do nothing as we cannot properly simulate with |
@@ -36,6 +30,8 @@ | |||
36 | **/ | 30 | **/ |
37 | 31 | ||
38 | #ifdef HAVE_SW_VOLUME_CONTROL | 32 | #ifdef HAVE_SW_VOLUME_CONTROL |
33 | #include "pcm_sw_volume.h" | ||
34 | |||
39 | void audiohw_set_volume(int vol_l, int vol_r) | 35 | void audiohw_set_volume(int vol_l, int vol_r) |
40 | { | 36 | { |
41 | pcm_set_master_volume(vol_l, vol_r); | 37 | pcm_set_master_volume(vol_l, vol_r); |