aboutsummaryrefslogtreecommitdiff
path: root/examples/others/monkey/lv_example_monkey_3.c
diff options
context:
space:
mode:
authorGabor Kiss-Vamosi <kisvegabor@gmail.com>2023-10-31 19:25:01 +0100
committerGabor Kiss-Vamosi <kisvegabor@gmail.com>2023-10-31 19:25:01 +0100
commita5a58e39d2abbb66b57cf27f3c4a1d25f9ac6b3d (patch)
tree3046130dce1b174fea713d07843b65ce6374dd4b /examples/others/monkey/lv_example_monkey_3.c
parentd456b1cb4da4795e3b2f64ec484f624fa127471d (diff)
downloadlvgl-a5a58e39d2abbb66b57cf27f3c4a1d25f9ac6b3d.tar.gz
lvgl-a5a58e39d2abbb66b57cf27f3c4a1d25f9ac6b3d.zip
refactor: replace lv_coord_t with int32_t
Diffstat (limited to 'examples/others/monkey/lv_example_monkey_3.c')
-rw-r--r--examples/others/monkey/lv_example_monkey_3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/others/monkey/lv_example_monkey_3.c b/examples/others/monkey/lv_example_monkey_3.c
index c5298cc8c..c4329834f 100644
--- a/examples/others/monkey/lv_example_monkey_3.c
+++ b/examples/others/monkey/lv_example_monkey_3.c
@@ -4,7 +4,7 @@
void lv_example_monkey_3(void)
{
static lv_point_t btn_points[3];
- lv_coord_t hor_res = LV_HOR_RES;
+ int32_t hor_res = LV_HOR_RES;
/*Create button monkey test*/
lv_monkey_config_t config;