Removed implicit screen updates (see also the discussion on scummvm-devel)

svn-id: r21385
This commit is contained in:
Max Horn 2006-03-19 17:14:43 +00:00
parent f7d16b0000
commit 99635b6a90

View file

@ -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();
}
}