From 99635b6a900f41dcec7d7fd17f11e297ece6210b Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 19 Mar 2006 17:14:43 +0000 Subject: Removed implicit screen updates (see also the discussion on scummvm-devel) svn-id: r21385 --- backends/sdl/graphics.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'backends') diff --git a/backends/sdl/graphics.cpp b/backends/sdl/graphics.cpp index 63df66f1de..8c40c26792 100644 --- a/backends/sdl/graphics.cpp +++ b/backends/sdl/graphics.cpp @@ -1276,8 +1276,6 @@ bool OSystem_SDL::showMouse(bool visible) { bool last = _mouseVisible; _mouseVisible = visible; - updateScreen(); - return last; } @@ -1285,7 +1283,6 @@ void OSystem_SDL::setMousePos(int x, int y) { if (x != _mouseCurState.x || y != _mouseCurState.y) { _mouseCurState.x = x; _mouseCurState.y = y; - updateScreen(); } } -- cgit v1.2.3