diff options
author | Robert Bieber <robby@bieberphoto.com> | 2010-07-01 21:49:55 +0000 |
---|---|---|
committer | Robert Bieber <robby@bieberphoto.com> | 2010-07-01 21:49:55 +0000 |
commit | 26a2f810f1432d4013b6ac321c8f2d4b6dc32454 (patch) | |
tree | a34b4d4985ac13c2c3b1974de4680e3bb4465368 /lib/skin_parser | |
parent | c794c1feae25eadca68da15606051922b2bb364d (diff) |
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
Diffstat (limited to 'lib/skin_parser')
-rw-r--r-- | lib/skin_parser/skin_parser.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |