forked from len0rd/rockbox
Disabled unused constants.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6431 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
642ac35940
commit
a559cf2e39
2 changed files with 7 additions and 2 deletions
|
|
@ -69,8 +69,9 @@
|
||||||
void dac_line_in(bool enable);
|
void dac_line_in(bool enable);
|
||||||
#endif
|
#endif
|
||||||
struct user_settings global_settings;
|
struct user_settings global_settings;
|
||||||
|
#ifdef HAVE_RECORDING
|
||||||
const char rec_base_directory[] = REC_BASE_DIR;
|
const char rec_base_directory[] = REC_BASE_DIR;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define CONFIG_BLOCK_VERSION 21
|
#define CONFIG_BLOCK_VERSION 21
|
||||||
|
|
@ -155,8 +156,10 @@ Rest of config block, only saved to disk:
|
||||||
/* some sets of values which are used more than once, to save memory */
|
/* some sets of values which are used more than once, to save memory */
|
||||||
static const char off_on[] = "off,on";
|
static const char off_on[] = "off,on";
|
||||||
static const char off_on_ask[] = "off,on,ask";
|
static const char off_on_ask[] = "off,on,ask";
|
||||||
static const char graphic_numeric[] = "graphic,numeric";
|
|
||||||
static const char off_number_spell_hover[] = "off,number,spell,hover";
|
static const char off_number_spell_hover[] = "off,number,spell,hover";
|
||||||
|
#ifdef HAVE_LCD_BITMAP
|
||||||
|
static const char graphic_numeric[] = "graphic,numeric";
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_RECORDING
|
#ifdef HAVE_RECORDING
|
||||||
/* keep synchronous to trig_durations and
|
/* keep synchronous to trig_durations and
|
||||||
|
|
|
||||||
|
|
@ -1019,11 +1019,13 @@ static bool swap_one_chunk(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_RECORDING
|
||||||
const unsigned char empty_id3_header[] =
|
const unsigned char empty_id3_header[] =
|
||||||
{
|
{
|
||||||
'I', 'D', '3', 0x03, 0x00, 0x00,
|
'I', 'D', '3', 0x03, 0x00, 0x00,
|
||||||
0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
|
0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static void mpeg_thread(void)
|
static void mpeg_thread(void)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue