Removed implicit screen updates (see also the discussion on scummvm-devel)
svn-id: r21385
This commit is contained in:
parent
f7d16b0000
commit
99635b6a90
1 changed files with 0 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue