From 1bf19eaaffeac20404f1247c0eeb0a4f20efd297 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Sat, 23 Nov 2024 21:01:02 -0500 Subject: [PATCH] tag_table use unsigned short rather than enum we have 190 tags mips padded with extra 2 bytes * 2 saves ~768 bytes Change-Id: I1d9bd8bf435bc1e3bc4564356c290c883c4724de --- lib/skin_parser/tag_table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/skin_parser/tag_table.h b/lib/skin_parser/tag_table.h index 3f8c4d7688..a31691efa8 100644 --- a/lib/skin_parser/tag_table.h +++ b/lib/skin_parser/tag_table.h @@ -348,7 +348,7 @@ enum skin_token_type { */ struct tag_info { - enum skin_token_type type; + unsigned short type; unsigned short param_pos; const char* name; int flags;