diff options
author | Max Horn | 2006-03-19 17:14:43 +0000 |
---|---|---|
committer | Max Horn | 2006-03-19 17:14:43 +0000 |
commit | 99635b6a900f41dcec7d7fd17f11e297ece6210b (patch) | |
tree | a90ed0ce9d996e2efac339269136a9734345592c /backends/sdl | |
parent | f7d16b000048cc50fa7922e64b55a2c2febb1f19 (diff) | |
download | scummvm-rg350-99635b6a900f41dcec7d7fd17f11e297ece6210b.tar.gz scummvm-rg350-99635b6a900f41dcec7d7fd17f11e297ece6210b.tar.bz2 scummvm-rg350-99635b6a900f41dcec7d7fd17f11e297ece6210b.zip |
Removed implicit screen updates (see also the discussion on scummvm-devel)
svn-id: r21385
Diffstat (limited to 'backends/sdl')
-rw-r--r-- | backends/sdl/graphics.cpp | 3 |
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(); } } |