diff options
author | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2023-09-18 22:57:30 +0200 |
---|---|---|
committer | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2023-09-18 22:57:30 +0200 |
commit | 0721884ee981c298c2ccb0e229db6802545321c4 (patch) | |
tree | a69a48f27e8e839d29a64a1895fa6fec342b5ec3 /src/stdlib/micropython/lv_mem_core_micropython.c | |
parent | 57a83cb2adbb57511a6ef3d1a458bf4cb85ccf85 (diff) | |
download | lvgl-0721884ee981c298c2ccb0e229db6802545321c4.tar.gz lvgl-0721884ee981c298c2ccb0e229db6802545321c4.zip |
refactor: disp->display, res->result/resolution, hor/ver->horizontal/vertical, txt->text, angle->rotation, zoom->scale
Diffstat (limited to 'src/stdlib/micropython/lv_mem_core_micropython.c')
-rw-r--r-- | src/stdlib/micropython/lv_mem_core_micropython.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdlib/micropython/lv_mem_core_micropython.c b/src/stdlib/micropython/lv_mem_core_micropython.c index e5816924e..f2add336c 100644 --- a/src/stdlib/micropython/lv_mem_core_micropython.c +++ b/src/stdlib/micropython/lv_mem_core_micropython.c @@ -83,10 +83,10 @@ void lv_mem_monitor_core(lv_mem_monitor_t * mon_p) } -lv_res_t lv_mem_test_core(void) +lv_result_t lv_mem_test_core(void) { /*Not supported*/ - return LV_RES_OK; + return LV_RESULT_OK; } /********************** |