Disable LV_MEM_CUSTOM by default

This commit is contained in:
fvanroie 2022-10-18 01:10:10 +02:00
parent e28a1965e4
commit c02d039e18

View File

@ -81,7 +81,7 @@ typedef int16_t lv_coord_t;
#define _lv_img_decoder_t _lv_img_decoder
/* 1: use custom malloc/free, 0: use the built-in `lv_mem_alloc` and `lv_mem_free` */
#define LV_MEM_CUSTOM 1
#define LV_MEM_CUSTOM 0
#if LV_MEM_CUSTOM == 0
/* Size of the memory used by `lv_mem_alloc` in bytes (>= 2kB)*/