diff options
Diffstat (limited to 'backends/sdl')
| -rw-r--r-- | backends/sdl/sdl.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/sdl/sdl.cpp b/backends/sdl/sdl.cpp index 5e231e07a6..1afba41d50 100644 --- a/backends/sdl/sdl.cpp +++ b/backends/sdl/sdl.cpp @@ -369,6 +369,10 @@ void OSystem_SDL::setFullscreenMode(bool enable) {  	if (_full_screen != enable) {  		assert(_hwscreen != 0);  		_full_screen ^= true; + +		if (_mouseDrawn) +			undraw_mouse(); +	  #if defined(MACOSX) && !SDL_VERSION_ATLEAST(1, 2, 6)  		// On OS X, SDL_WM_ToggleFullScreen is currently not implemented. Worse,  		// before SDL 1.2.6 it always returned -1 (which would indicate a  | 
