summaryrefslogtreecommitdiff
path: root/apps/plugins/oscilloscope.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/plugins/oscilloscope.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/plugins/oscilloscope.c')
-rw-r--r--apps/plugins/oscilloscope.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/oscilloscope.c b/apps/plugins/oscilloscope.c
index caa09a0ed4..868a20547c 100644
--- a/apps/plugins/oscilloscope.c
+++ b/apps/plugins/oscilloscope.c
@@ -242,7 +242,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
242 if (vol < 100) 242 if (vol < 100)
243 { 243 {
244 vol++; 244 vol++;
245 rb->mpeg_sound_set(SOUND_VOLUME, vol); 245 rb->sound_set(SOUND_VOLUME, vol);
246 rb->global_settings->volume = vol; 246 rb->global_settings->volume = vol;
247 } 247 }
248 break; 248 break;
@@ -253,7 +253,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
253 if (vol > 0) 253 if (vol > 0)
254 { 254 {
255 vol--; 255 vol--;
256 rb->mpeg_sound_set(SOUND_VOLUME, vol); 256 rb->sound_set(SOUND_VOLUME, vol);
257 rb->global_settings->volume = vol; 257 rb->global_settings->volume = vol;
258 } 258 }
259 break; 259 break;