1
0
Fork 0
forked from len0rd/rockbox

fix FS#11384, skinupdater barfed on %Xd and %Vi

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26691 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-06-08 14:43:30 +00:00
parent 82e40076d1
commit b71dc1f952

View file

@ -277,6 +277,19 @@ int parse_tag(FILE* out, const char* start, bool in_conditional)
PUTCH(out, '('); PUTCH(out, '(');
len += 1+dump_arg(out, start+1, 3, true); len += 1+dump_arg(out, start+1, 3, true);
} }
else if (MATCH("Vi"))
{
int read = 1;
PUTCH(out, '(');
if ((start[1] >= 'a' && start[1] <= 'z') ||
(start[1] >= 'A' && start[1] <= 'Z'))
{
read = 1+dump_arg(out, start+1, 1, false);
PUTCH(out, ',');
}
len += read + dump_viewport_tags(out, start+read);
}
else if (MATCH("Vl") || MATCH("Vi")) else if (MATCH("Vl") || MATCH("Vi"))
{ {
int read; int read;
@ -292,7 +305,7 @@ int parse_tag(FILE* out, const char* start, bool in_conditional)
} }
else if (MATCH("X")) else if (MATCH("X"))
{ {
if (*start+1 == 'd') if (*start == 'd')
{ {
fprintf(out, "(d)"); fprintf(out, "(d)");
len ++; len ++;