From bb70cc6e6698246180e5a9cc801bf8c845f85f0b Mon Sep 17 00:00:00 2001 From: kub Date: Sat, 12 Dec 2020 17:31:07 +0100 Subject: [PATCH] ui, turn cursor off in SDL (was on by default on GKD) --- platform/common/plat_sdl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/common/plat_sdl.c b/platform/common/plat_sdl.c index 7a12fa92..b98b16e5 100644 --- a/platform/common/plat_sdl.c +++ b/platform/common/plat_sdl.c @@ -299,6 +299,7 @@ void plat_init(void) ret = plat_sdl_init(); if (ret != 0) exit(1); + SDL_ShowCursor(0); #if defined(__RG350__) || defined(__GCW0__) // opendingux on JZ47x0 may falsely report a HW overlay, fix to window plat_target.vout_method = 0; -- 2.39.2