From d114429d88f7bc427425ed93d8bbcfba213ff52c Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 3 Dec 2024 20:25:56 -0500 Subject: [PATCH] skin_debug: Fix missing PERCENT tag dump Change-Id: Ie4041d5666c3a53439e23363d89b9bbf40241a42 --- lib/skin_parser/skin_debug.c | 5 +++++ 1 file changed, 5 insertions(+) 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++;