From ea864be7082cbe2d1a9d4f5b1e809feacb1d1aaf Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Wed, 2 Jun 2010 06:52:17 +0000 Subject: Fixed another code generation bug with viewports and enabled negative numbers in tag parameters git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26465 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/skin_scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/themeeditor/skin_scan.c') diff --git a/utils/themeeditor/skin_scan.c b/utils/themeeditor/skin_scan.c index 28d097125a..599683db54 100644 --- a/utils/themeeditor/skin_scan.c +++ b/utils/themeeditor/skin_scan.c @@ -107,7 +107,7 @@ int scan_int(char** document) int retval; int i; - while(isdigit(*cursor) || *cursor == COMMENTSYM) + while(isdigit(*cursor) || *cursor == COMMENTSYM || *cursor == '-') { if(*cursor == COMMENTSYM) { -- cgit v1.2.3