From 45ed0b86eb5f4ab3f1201704865110e6e01fb223 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Wed, 9 Jun 2010 13:30:10 +0000 Subject: fix %Vp updating... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26722 a1c6a512-1295-4272-9138-f99709370657 --- utils/skinupdater/skinupdater.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'utils/skinupdater/skinupdater.c') diff --git a/utils/skinupdater/skinupdater.c b/utils/skinupdater/skinupdater.c index e249996cd5..0bb305fb5e 100644 --- a/utils/skinupdater/skinupdater.c +++ b/utils/skinupdater/skinupdater.c @@ -279,9 +279,24 @@ int parse_tag(FILE* out, const char* start, bool in_conditional) } else if (MATCH("Vp")) { + int read; /* NOTE: almost certainly needs work */ PUTCH(out, '('); - len += 1+dump_arg(out, start+1, 3, true); + read = 1+dump_arg(out, start+1, 1, false); + PUTCH(out, ','); + while (start[read] != '|') + { + PUTCH(out, start[read++]); + } + PUTCH(out, ','); + read++; + while (start[read] != '|') + { + PUTCH(out, start[read++]); + } + PUTCH(out, ')'); + read++; + len += read; } else if (MATCH("Vi")) { -- cgit v1.2.3