aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
Diffstat (limited to 'backends')
-rw-r--r--backends/sdl/graphics.cpp3
1 files changed, 0 insertions, 3 deletions
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();
}
}