Skip to content

Commit b779020

Browse files
committedMar 17, 2025·
Clean-up.
1 parent a4853e7 commit b779020

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎plugins/gui/gui.c

-2
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,6 @@ ctr_object* ctr_gui_screen(ctr_object* myself, ctr_argument* argumentList) {
516516
// for some reason events will take place (on android) in the wrong place if we dont do this...
517517
SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "1");
518518
SDL_RenderSetLogicalSize(lv_sdl_window_get_renderer(CtrGUIDisplay), CtrGUIWidth, CtrGUIHeight);
519-
//end
520519
lv_group_t * g = lv_group_create();
521520
lv_group_set_default(g);
522521
lv_indev_t* mouse = lv_sdl_mouse_create();
@@ -546,7 +545,6 @@ ctr_object* ctr_gui_screen(ctr_object* myself, ctr_argument* argumentList) {
546545
arguments->object = CtrStdNil;
547546
ctr_send_message(guiObject, CTR_DICT_RUN, strlen(CTR_DICT_RUN), arguments);
548547
ctr_heap_free(arguments);
549-
/*Handle LVGL tasks*/
550548
while(1) {
551549
idle_time = lv_timer_handler(); /*Returns the time to the next timer execution*/
552550
usleep(idle_time * 1000);

0 commit comments

Comments
 (0)
Please sign in to comment.