Theme Editor: Fixed a warning in the parser due to a stray asterisk

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27239 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-07-02 08:43:01 +00:00
parent 4429fb02b7
commit 00a3024924

View file

@ -638,7 +638,7 @@ static int skin_parse_tag(struct skin_element* element, char** document)
if((strcmp(tag->name, "Vf") == 0 || strcmp(tag->name, "Vb") == 0)
&& *cursor == '\n' && skin_line == viewport_line)
{
*cursor++;
cursor++;
skin_line++;
}