1
0
Fork 0
forked from len0rd/rockbox

moved sounds settings to settings.h, config.h is only for including the

correct sub-config.h filea


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1086 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-19 14:58:35 +00:00
parent 258919cc55
commit 6cd60cc3e3
3 changed files with 14 additions and 13 deletions

View file

@ -30,17 +30,4 @@
/* no known platform */
#endif
/* system defines */
#define DEFAULT_VOLUME_SETTING 70
#define DEFAULT_BALANCE_SETTING 50
#define DEFAULT_BASS_SETTING 50
#define DEFAULT_TREBLE_SETTING 50
#define DEFAULT_LOUDNESS_SETTING 0
#define DEFAULT_BASS_BOOST_SETTING 0
#define DEFAULT_CONTRAST_SETTING 0
#define DEFAULT_POWEROFF_SETTING 0
#define DEFAULT_BACKLIGHT_SETTING 1
#endif

View file

@ -28,6 +28,7 @@
#include "thread.h"
#include "panic.h"
#include "file.h"
#include "settings.h"
#define MPEG_STACK_SIZE 0x2000
#define MPEG_CHUNKSIZE 0x20000

View file

@ -64,6 +64,19 @@ void reload_all_settings( user_settings_t *settings );
void reset_settings( user_settings_t *settings );
void display_current_settings( user_settings_t *settings );
/* system defines */
#define DEFAULT_VOLUME_SETTING 70
#define DEFAULT_BALANCE_SETTING 50
#define DEFAULT_BASS_SETTING 50
#define DEFAULT_TREBLE_SETTING 50
#define DEFAULT_LOUDNESS_SETTING 0
#define DEFAULT_BASS_BOOST_SETTING 0
#define DEFAULT_CONTRAST_SETTING 0
#define DEFAULT_POWEROFF_SETTING 0
#define DEFAULT_BACKLIGHT_SETTING 1
#endif /* __SETTINGS_H__ */