summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-06-09 13:30:10 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-06-09 13:30:10 +0000
commit45ed0b86eb5f4ab3f1201704865110e6e01fb223 (patch)
tree45eb6e3684fb63ea151c8cfa71dbcbb050c6e898
parenta444eb57d494b737b6733100acbf50e26ebfb4ba (diff)
downloadrockbox-45ed0b86eb5f4ab3f1201704865110e6e01fb223.tar.gz
rockbox-45ed0b86eb5f4ab3f1201704865110e6e01fb223.zip
fix %Vp updating...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26722 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--utils/skinupdater/skinupdater.c17
1 files changed, 16 insertions, 1 deletions
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)
279 } 279 }
280 else if (MATCH("Vp")) 280 else if (MATCH("Vp"))
281 { 281 {
282 int read;
282 /* NOTE: almost certainly needs work */ 283 /* NOTE: almost certainly needs work */
283 PUTCH(out, '('); 284 PUTCH(out, '(');
284 len += 1+dump_arg(out, start+1, 3, true); 285 read = 1+dump_arg(out, start+1, 1, false);
286 PUTCH(out, ',');
287 while (start[read] != '|')
288 {
289 PUTCH(out, start[read++]);
290 }
291 PUTCH(out, ',');
292 read++;
293 while (start[read] != '|')
294 {
295 PUTCH(out, start[read++]);
296 }
297 PUTCH(out, ')');
298 read++;
299 len += read;
285 } 300 }
286 else if (MATCH("Vi")) 301 else if (MATCH("Vi"))
287 { 302 {