From 2d31d77a8ba231cb03ec35863c4c4ce2024f6509 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 29 Jul 2010 12:37:48 +0000 Subject: FS#11470 - new skin code, finally svn uses the new parser from the theme editor. This means that a skin that passes the editor WILL pass svn and checkwps (unless the target runs out of skin buffer or something. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27613 a1c6a512-1295-4272-9138-f99709370657 --- utils/newparser/skin_render.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'utils') diff --git a/utils/newparser/skin_render.c b/utils/newparser/skin_render.c index 1690455086..09c9ca1355 100644 --- a/utils/newparser/skin_render.c +++ b/utils/newparser/skin_render.c @@ -43,7 +43,7 @@ static void do_tags_in_hidden_conditional(struct skin_element* branch) { /* Tags here are ones which need to be "turned off" or cleared * if they are in a conditional branch which isnt being used */ - if (branch->type == SUBLINES) + if (branch->type == LINE_ALTERNATOR) { int i; for (i=0; ichildren_count; i++) @@ -71,7 +71,6 @@ static void do_tags_in_hidden_conditional(struct skin_element* branch) break; case SKIN_TOKEN_IMAGE_DISPLAY: case SKIN_TOKEN_IMAGE_PRELOAD_DISPLAY: - printf("disable image\n"); /* clear images */ break; default: @@ -109,7 +108,7 @@ void skin_render_line(struct skin_element* line, do_tags_in_hidden_conditional(child->children[last_value]); last_value = value; - if (child->children[value]->type == SUBLINES) + if (child->children[value]->type == LINE_ALTERNATOR) func = skin_render_alternator; else if (child->children[value]->type == LINE) func = skin_render_line; -- cgit v1.2.3