forked from len0rd/rockbox
[Bugfix] RTC_TOKEN_PRESENT is less than SKIN_TOKENS_RTC_BEGIN
this blocks the check for RTC_TOKEN_PRESENT thanks, chris_s Change-Id: I53a7d83d7cd8e5e9b9d6ea6eed016dc35571bcd3
This commit is contained in:
parent
fa8b095f29
commit
0c4b78c011
1 changed files with 8 additions and 4 deletions
|
@ -775,8 +775,7 @@ static const char* get_rtc_token_value(struct wps_token *token,
|
|||
default:
|
||||
return "?";
|
||||
|
||||
case SKIN_TOKEN_RTC_PRESENT:
|
||||
return "c";
|
||||
|
||||
case SKIN_TOKEN_RTC_12HOUR_CFG:
|
||||
snprintf(buf, buf_size, "%d", global_settings.timeformat);
|
||||
numeric_ret = global_settings.timeformat + 1;
|
||||
|
@ -894,8 +893,7 @@ static const char* get_rtc_token_value(struct wps_token *token,
|
|||
{
|
||||
default:
|
||||
return "?";
|
||||
case SKIN_TOKEN_RTC_PRESENT:
|
||||
return NULL;
|
||||
|
||||
case SKIN_TOKEN_RTC_DAY_OF_MONTH:
|
||||
case SKIN_TOKEN_RTC_DAY_OF_MONTH_BLANK_PADDED:
|
||||
case SKIN_TOKEN_RTC_HOUR_24_ZERO_PADDED:
|
||||
|
@ -1350,6 +1348,12 @@ const char *get_token_value(struct gui_wps *gwps,
|
|||
numeric_buf = buf;
|
||||
goto gtv_ret_numeric_tag_info;
|
||||
|
||||
case SKIN_TOKEN_RTC_PRESENT:
|
||||
#if CONFIG_RTC
|
||||
return "c";
|
||||
#else
|
||||
return NULL;
|
||||
#endif
|
||||
/* peakmeter */
|
||||
case SKIN_TOKEN_PEAKMETER_LEFT:
|
||||
case SKIN_TOKEN_PEAKMETER_RIGHT:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue