LVGL allow null pointer for lv_disp and lv_indev

This commit is contained in:
Stephan Hadinger 2022-01-30 10:58:42 +01:00
parent cd4aec2935
commit 90675463b5
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ int lv0_init(bvm *vm);
int lv0_init(bvm *vm) {
// "+_p" indicates that there must be an non NULL argument, either passed as comptr or returned by the function
// Here, there is no function, so calling the constructor without a non-null comptr argument is rejected
return be_call_c_func(vm, NULL, "+_p", NULL);
return be_call_c_func(vm, NULL, "=_p", NULL);
}
/*********************************************************************************************\