sdl: fix SDL.NoFullscreenCursor (for use with zapper in fullscreen)
This commit is contained in:
parent
c490369e67
commit
1b368e56bf
|
@ -219,8 +219,10 @@ InitVideo(FCEUGI *gi)
|
||||||
|
|
||||||
// check if we are rendering fullscreen
|
// check if we are rendering fullscreen
|
||||||
if(s_fullscreen) {
|
if(s_fullscreen) {
|
||||||
|
int no_cursor;
|
||||||
|
g_config->getOption("SDL.NoFullscreenCursor", &no_cursor);
|
||||||
flags |= SDL_FULLSCREEN;
|
flags |= SDL_FULLSCREEN;
|
||||||
SDL_ShowCursor(0);
|
SDL_ShowCursor(!no_cursor);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
SDL_ShowCursor(1);
|
SDL_ShowCursor(1);
|
||||||
|
|
Loading…
Reference in New Issue