mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-12 00:47:49 -04:00
change to %Cd to display albumart (instead of %C to make it more consistant with %Vd/%Vl and %xd/%xl)
Also assume ; in skins are for sublines.. this means if you want ; in text you need to manually escape it (%;) far less false positives then git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26693 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c4fbb07a76
commit
2309d6d1e1
3 changed files with 10 additions and 2 deletions
|
|
@ -190,6 +190,10 @@ int parse_tag(FILE* out, const char* start, bool in_conditional)
|
|||
PUTCH(out, '(');
|
||||
len += 1+dump_arg(out, start+1, 2, true);
|
||||
}
|
||||
else if (MATCH("C"))
|
||||
{
|
||||
fprintf(out, "%%Cd");
|
||||
}
|
||||
else if (MATCH("Cl"))
|
||||
{
|
||||
int read;
|
||||
|
|
@ -395,6 +399,10 @@ top:
|
|||
PUTCH(out, *in++);
|
||||
}
|
||||
}
|
||||
else if (*in == ';')
|
||||
{
|
||||
PUTCH(out, *in++);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (find_escape_character(*in))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue