1
0
Fork 0
forked from len0rd/rockbox

[Fix Yellow] skin_backdrops.c screen is unsigned

Change-Id: Ib9a669f547c86d610b22ca85e761920dd5875243
This commit is contained in:
William Wilgus 2025-01-02 11:38:46 -05:00
parent e65543cdc2
commit 888f4dbe57

View file

@ -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];