diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-09-04 22:49:33 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-09-04 22:49:33 +0000 |
| commit | 5d68d27f20f76925b89f277cba198c11e73a3c59 (patch) | |
| tree | 32bfeb4e53767661dac542b226361bf684faadcb | |
| parent | 118d45eb92a423e9774c0bc9d05f487dca478d47 (diff) | |
| download | rockbox-5d68d27f20f76925b89f277cba198c11e73a3c59.zip rockbox-5d68d27f20f76925b89f277cba198c11e73a3c59.tar.gz rockbox-5d68d27f20f76925b89f277cba198c11e73a3c59.tar.bz2 rockbox-5d68d27f20f76925b89f277cba198c11e73a3c59.tar.xz | |
Now settings_apply() also sets the MP3 buffer margin (antiskip)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3947 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/settings.c b/apps/settings.c index ceb7d7c..15d1103 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -480,6 +480,8 @@ void settings_apply(void) mpeg_sound_set(SOUND_AVC, global_settings.avc); #endif + mpeg_set_buffer_margin(global_settings.buffer_margin); + lcd_set_contrast(global_settings.contrast); lcd_scroll_speed(global_settings.scroll_speed); backlight_set_timeout(global_settings.backlight_timeout); |