skin_engine: get rid of skin_unload_all

The skin is not unloaded using skin_unload_all in
settings_apply_skins anymore since commit 0ca4b38.

usb_screen was last remaining user until commit a969e1f.

Change-Id: I65a41ed220165587a04e699a7f210c575c00a4eb
This commit is contained in:
Christian Soffke 2026-06-02 19:17:01 +02:00
parent 4469b95ef2
commit a39e4f2a06
2 changed files with 0 additions and 7 deletions

View file

@ -152,11 +152,6 @@ void gui_sync_skin_init(void)
}
}
void skin_unload_all(void)
{
gui_sync_skin_init();
}
static void skin_reset_buffers(int item, int screen)
{
skin_data_free_buflib_allocs(&skins[item][screen].data);

View file

@ -78,8 +78,6 @@ void skin_load(enum skinnable_screens skin, enum screen_type screen,
struct gui_wps *skin_get_gwps(enum skinnable_screens skin, enum screen_type screen);
void gui_sync_skin_init(void);
void skin_unload_all(void);
bool skin_do_full_update(enum skinnable_screens skin, enum screen_type screen);
void skin_request_full_update(enum skinnable_screens skin);
void skin_request_update_locked(bool locked);