summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/skin_engine/skin_parser.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index 886aeaed56..650092557f 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1785,7 +1785,12 @@ static int check_feature_tag(const char *wps_bufptr, const int type)
1785 if (radio_hardware_present()) 1785 if (radio_hardware_present())
1786 return 0; 1786 return 0;
1787#endif 1787#endif
1788 case WPS_TOKEN_HAVE_RDS:
1789#ifdef HAVE_RDS_CAP
1790 return 0;
1791#else
1788 return find_false_branch(wps_bufptr); 1792 return find_false_branch(wps_bufptr);
1793#endif
1789 1794
1790 default: /* not a tag we care about, just don't skip */ 1795 default: /* not a tag we care about, just don't skip */
1791 return 0; 1796 return 0;