diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-12-03 20:25:56 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-12-03 20:37:55 -0500 |
commit | d114429d88f7bc427425ed93d8bbcfba213ff52c (patch) | |
tree | a7ed7684fbb51d73538f1d43db41407cd9ee4675 | |
parent | 00d7a939870e7d4301c86984ae6f1fc0dea3654d (diff) | |
download | rockbox-d114429d88.tar.gz rockbox-d114429d88.zip |
skin_debug: Fix missing PERCENT tag dump
Change-Id: Ie4041d5666c3a53439e23363d89b9bbf40241a42
-rw-r--r-- | lib/skin_parser/skin_debug.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/skin_parser/skin_debug.c b/lib/skin_parser/skin_debug.c index 77a21fd8e8..cdf6087454 100644 --- a/lib/skin_parser/skin_debug.c +++ b/lib/skin_parser/skin_debug.c @@ -275,6 +275,11 @@ void skin_debug_params(int count, struct skin_tag_parameter params[]) params[i].data.number%10); break; + case PERCENT: + printf("percent: %d.%d", params[i].data.number/10, + params[i].data.number%10); + break; + case CODE: printf("Skin Code: \n"); debug_indent_level++; |