summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorAnton Oleynikov <len0x@rockbox.org>2005-11-13 14:10:57 +0000
committerAnton Oleynikov <len0x@rockbox.org>2005-11-13 14:10:57 +0000
commit0bb62fb1e2bcb95c62177ec10e51914843619a0a (patch)
tree15c00656e30045356c53f81506b0d38bfa9872d0 /firmware
parent18dff12614d08e5d01fe0e22815a47aedffbfc8e (diff)
downloadrockbox-0bb62fb1e2bcb95c62177ec10e51914843619a0a.tar.gz
rockbox-0bb62fb1e2bcb95c62177ec10e51914843619a0a.zip
removed set audio status method - will be using different approach
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7844 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/mpeg.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index 6688788c9e..ef7c315b0c 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -2833,22 +2833,6 @@ int audio_status(void)
2833 return ret; 2833 return ret;
2834} 2834}
2835 2835
2836void set_audio_status(int status)
2837{
2838
2839
2840 if (status & AUDIO_STATUS_PLAY)
2841 is_playing = true;
2842 else
2843 is_playing = false;
2844
2845 if (status & AUDIO_STATUS_PAUSE)
2846 paused = true;
2847 else
2848 paused = false;
2849
2850}
2851
2852unsigned int audio_error(void) 2836unsigned int audio_error(void)
2853{ 2837{
2854 return mpeg_errno; 2838 return mpeg_errno;