summaryrefslogtreecommitdiff
path: root/apps/status.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-04-01 13:41:03 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-04-01 13:41:03 +0000
commit674eaca5ef59625f90088da006eca4d10e2bea56 (patch)
treeb0f02cec358ce1c506fb6d2256e2db059c7b6b6a /apps/status.c
parent88d5aab5a1098c5636584ddf06bd3012dc8c5b4c (diff)
downloadrockbox-674eaca5ef59625f90088da006eca4d10e2bea56.tar.gz
rockbox-674eaca5ef59625f90088da006eca4d10e2bea56.zip
Moved the mpeg_sound_xxx() functions to sound.c and renamed them to sound_xxx()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6240 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/status.c')
-rw-r--r--apps/status.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/status.c b/apps/status.c
index 562cd50964..d4736f3773 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -36,6 +36,7 @@
36#endif 36#endif
37#include "powermgmt.h" 37#include "powermgmt.h"
38#include "led.h" 38#include "led.h"
39#include "sound.h"
39 40
40static enum playmode ff_mode; 41static enum playmode ff_mode;
41 42
@@ -146,7 +147,7 @@ void status_draw(bool force_redraw)
146 (void)force_redraw; /* players always "redraw" */ 147 (void)force_redraw; /* players always "redraw" */
147#endif 148#endif
148 149
149 info.volume = mpeg_val2phys(SOUND_VOLUME, global_settings.volume); 150 info.volume = sound_val2phys(SOUND_VOLUME, global_settings.volume);
150 info.inserted = charger_inserted(); 151 info.inserted = charger_inserted();
151 info.battlevel = battery_level(); 152 info.battlevel = battery_level();
152 info.battery_safe = battery_level_safe(); 153 info.battery_safe = battery_level_safe();