summaryrefslogtreecommitdiff
path: root/utils/themeeditor/skin_scan.c
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-02 05:45:34 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-02 05:45:34 +0000
commit999990c23470bfa1340fe6356f85ae2e086cf052 (patch)
treeab1daf7a3c361267aeed5088e4bd6e011a2b1b29 /utils/themeeditor/skin_scan.c
parentf02a2446d3c05b824cbbb887834ce82a7cd8fe0b (diff)
downloadrockbox-999990c23470bfa1340fe6356f85ae2e086cf052.tar.gz
rockbox-999990c23470bfa1340fe6356f85ae2e086cf052.zip
Theme Editor: Fixed a small bug with asterisk handling in tag parameter argument codes and fixed bugs with handling escaped characters
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26460 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/skin_scan.c')
-rw-r--r--utils/themeeditor/skin_scan.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/themeeditor/skin_scan.c b/utils/themeeditor/skin_scan.c
index 37c948fb3c..28d097125a 100644
--- a/utils/themeeditor/skin_scan.c
+++ b/utils/themeeditor/skin_scan.c
@@ -61,6 +61,9 @@ char* scan_string(char** document)
61 continue; 61 continue;
62 } 62 }
63 63
64 if(*cursor == TAGSYM)
65 cursor++;
66
64 if(*cursor == '\n') 67 if(*cursor == '\n')
65 { 68 {
66 skin_error(UNEXPECTED_NEWLINE); 69 skin_error(UNEXPECTED_NEWLINE);
@@ -77,6 +80,9 @@ char* scan_string(char** document)
77 buffer[length] = '\0'; 80 buffer[length] = '\0';
78 for(i = 0; i < length; i++) 81 for(i = 0; i < length; i++)
79 { 82 {
83 if(*cursor == TAGSYM)
84 cursor++;
85
80 if(*cursor == COMMENTSYM) 86 if(*cursor == COMMENTSYM)
81 { 87 {
82 skip_comment(&cursor); 88 skip_comment(&cursor);