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:
parent
258919cc55
commit
6cd60cc3e3
3 changed files with 14 additions and 13 deletions
|
@ -30,17 +30,4 @@
|
||||||
/* no known platform */
|
/* no known platform */
|
||||||
#endif
|
#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
|
#endif
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include "panic.h"
|
#include "panic.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
#include "settings.h"
|
||||||
|
|
||||||
#define MPEG_STACK_SIZE 0x2000
|
#define MPEG_STACK_SIZE 0x2000
|
||||||
#define MPEG_CHUNKSIZE 0x20000
|
#define MPEG_CHUNKSIZE 0x20000
|
||||||
|
|
|
@ -64,6 +64,19 @@ void reload_all_settings( user_settings_t *settings );
|
||||||
void reset_settings( user_settings_t *settings );
|
void reset_settings( user_settings_t *settings );
|
||||||
void display_current_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__ */
|
#endif /* __SETTINGS_H__ */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue