ui, turn cursor off in SDL (was on by default on GKD)

This commit is contained in:
kub 2020-12-12 17:31:07 +01:00
parent 7e5b769d8f
commit bb70cc6e66

View file

@ -299,6 +299,7 @@ void plat_init(void)
ret = plat_sdl_init(); ret = plat_sdl_init();
if (ret != 0) if (ret != 0)
exit(1); exit(1);
SDL_ShowCursor(0);
#if defined(__RG350__) || defined(__GCW0__) #if defined(__RG350__) || defined(__GCW0__)
// opendingux on JZ47x0 may falsely report a HW overlay, fix to window // opendingux on JZ47x0 may falsely report a HW overlay, fix to window
plat_target.vout_method = 0; plat_target.vout_method = 0;