diff options
author | William Wilgus <wilgus.william@gmail.com> | 2025-01-02 11:38:46 -0500 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2025-01-02 11:38:46 -0500 |
commit | 888f4dbe5722142b466224d33f3d7d058175bab2 (patch) | |
tree | 882738679a298319c256b4a55b81babbc356590e | |
parent | e65543cdc200a336a8a98c82ed86944bd79a03c3 (diff) | |
download | rockbox-888f4dbe57.tar.gz rockbox-888f4dbe57.zip |
[Fix Yellow] skin_backdrops.c screen is unsigned
Change-Id: Ib9a669f547c86d610b22ca85e761920dd5875243
-rw-r--r-- | apps/gui/skin_engine/skin_backdrops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_backdrops.c b/apps/gui/skin_engine/skin_backdrops.c index debe392511..08937d8fdc 100644 --- a/apps/gui/skin_engine/skin_backdrops.c +++ b/apps/gui/skin_engine/skin_backdrops.c @@ -39,7 +39,7 @@ static struct skin_backdrop { bool initialized; bool loaded; bool UNUSED_; - int8_t screen; + uint8_t screen; } backdrops[NB_BDROPS]; static int current_lcd_backdrop[NB_SCREENS]; |