diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-28 15:09:11 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-06-28 15:09:11 +0000 |
| commit | 811fc3a67ee5ab10b4af6ab354fbdde24c125b89 (patch) | |
| tree | 60da9bf29a3059700b049fa7d7430766c32f3d87 /apps | |
| parent | f888c252ed548b6f1363781df81542767d1a121f (diff) | |
| download | rockbox-811fc3a67ee5ab10b4af6ab354fbdde24c125b89.zip rockbox-811fc3a67ee5ab10b4af6ab354fbdde24c125b89.tar.gz rockbox-811fc3a67ee5ab10b4af6ab354fbdde24c125b89.tar.bz2 rockbox-811fc3a67ee5ab10b4af6ab354fbdde24c125b89.tar.xz | |
Now uses the global_settings in the mpeg_init() call
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1250 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/main.c b/apps/main.c index defc48e..47c91dd 100644 --- a/apps/main.c +++ b/apps/main.c @@ -104,9 +104,9 @@ void init(void) backlight_init(); button_init(); - mpeg_init( DEFAULT_VOLUME_SETTING, - DEFAULT_BASS_SETTING, - DEFAULT_TREBLE_SETTING ); + mpeg_init( global_settings.volume, + global_settings.bass, + global_settings.treble ); } int main(void) |