diff options
author | Karl Kurbjun <kkurbjun@gmail.com> | 2009-03-11 01:18:23 +0000 |
---|---|---|
committer | Karl Kurbjun <kkurbjun@gmail.com> | 2009-03-11 01:18:23 +0000 |
commit | 3c7ada594142b44bfb543f7ec693ac7250176287 (patch) | |
tree | a0a6cc746d5810c2e44643b627d5a181ad9acbdc /firmware/drivers | |
parent | 2d9caa9aa3aeebed58772eb6ed4b2f4aed85abf6 (diff) |
Sound working with rockbox PCM interface on the M:Robe 500. Doom and Rockboy run with sound. There are stability problems that need to be looked into causing the player to reset when music playback is attempted.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20284 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/audio/tsc2100.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/drivers/audio/tsc2100.c b/firmware/drivers/audio/tsc2100.c index 98a16f1fc1..8a71d57e78 100644 --- a/firmware/drivers/audio/tsc2100.c +++ b/firmware/drivers/audio/tsc2100.c @@ -83,7 +83,7 @@ void audiohw_init(void) void audiohw_postinit(void) { - audiohw_mute(0); + audiohw_mute(false); } void audiohw_set_master_vol(int vol_l, int vol_r) @@ -112,7 +112,6 @@ void audiohw_close(void) { /* mute headphones */ audiohw_mute(true); - } void audiohw_set_frequency(int fsel) |