From 26a2f810f1432d4013b6ac321c8f2d4b6dc32454 Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Thu, 1 Jul 2010 21:49:55 +0000 Subject: Theme Editor: Fixed line numbering bug in parser. Implemented playlist display in renderer: playlist will use info for next track for all tracks other than the current track git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27227 a1c6a512-1295-4272-9138-f99709370657 --- lib/skin_parser/skin_parser.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/skin_parser/skin_parser.c b/lib/skin_parser/skin_parser.c index 2d439710d9..5e4ef49074 100644 --- a/lib/skin_parser/skin_parser.c +++ b/lib/skin_parser/skin_parser.c @@ -463,6 +463,7 @@ static int skin_parse_tag(struct skin_element* element, char** document) cursor++; if (*cursor) cursor++; + skin_line++; *document = cursor; return 1; } @@ -628,6 +629,7 @@ static int skin_parse_tag(struct skin_element* element, char** document) cursor++; if (*cursor) cursor++; + skin_line++; } *document = cursor; -- cgit