From 22f9949b9da43c1ca0679ab29a108de972a203db Mon Sep 17 00:00:00 2001 From: Ulf Wohlers Date: Tue, 17 Dec 2002 14:13:01 +0000 Subject: [PATCH] Be sure not to draw sdl mouse pointer in fullscreen Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@580 --- src/gui/sdlmain.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index c0d9222a..943ab9da 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -134,6 +134,8 @@ static void SwitchFullScreen(void) { sdl.width=0;sdl.height=0; (*sdl.resize)(&sdl.width,&sdl.height); } + // be sure not to dont draw sdl mouse + SDL_ShowCursor(SDL_DISABLE); } ResetScreen(); GFX_Start();