fix(sdl): use stdlib malloc/free for framebuffer allocation

This commit is contained in:
Gabor Kiss-Vamosi
2023-11-30 13:36:55 +01:00
parent ddd61d9476
commit e06285e7a5
2 changed files with 4 additions and 2 deletions

View File

@@ -300,6 +300,8 @@ void lv_deinit(void)
return;
}
if(lv_deinit_in_progress) return;
lv_deinit_in_progress = true;
#if LV_USE_SYSMON