From: kub Date: Sat, 12 Dec 2020 16:31:07 +0000 (+0100) Subject: ui, turn cursor off in SDL (was on by default on GKD) X-Git-Tag: v2.00~643 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb70cc6e6698246180e5a9cc801bf8c845f85f0b;p=picodrive.git ui, turn cursor off in SDL (was on by default on GKD) --- 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;