[Scummvm-cvs-logs] CVS: scummvm/backends/sdl sdl-common.cpp,1.25,1.26

James Brown ender at users.sourceforge.net
Thu Jan 9 10:03:03 CET 2003


Update of /cvsroot/scummvm/scummvm/backends/sdl
In directory sc8-pr-cvs1:/tmp/cvs-serv5676/backends/sdl

Modified Files:
	sdl-common.cpp 
Log Message:
Remove hack - now the cannon scene works in fullscreen linux. Someone tell me how it goes for Windows


Index: sdl-common.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/sdl/sdl-common.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- sdl-common.cpp	9 Jan 2003 16:57:09 -0000	1.25
+++ sdl-common.cpp	9 Jan 2003 18:02:17 -0000	1.26
@@ -400,12 +400,7 @@
 }
 
 void OSystem_SDL_Common::warp_mouse(int x, int y) {
-	// FIXME: For whatever reason, I can't get CMI's cannon scene to work
-	// properly in fullscreen mode unless I temporarily show the mouse
-	// cursor here.
-	if (_full_screen) SDL_ShowCursor(SDL_ENABLE);
 	SDL_WarpMouse(x * _scaleFactor, y * _scaleFactor);
-	if (_full_screen) SDL_ShowCursor(SDL_DISABLE);
 //	set_mouse_pos(x, y);
 }
 	





More information about the Scummvm-git-logs mailing list