diff options
author | Colin Snover | 2017-07-03 16:05:48 -0500 |
---|---|---|
committer | Colin Snover | 2017-07-06 19:12:38 -0500 |
commit | e9bef896462d6f99c4c89672de90c99e879415a2 (patch) | |
tree | 64eb2df32d3204e07158837fcb7b196a87da5fb2 | |
parent | 2d6fe2b8cdf4a410362c87c2eacc7aaef90ef35c (diff) | |
download | scummvm-rg350-e9bef896462d6f99c4c89672de90c99e879415a2.tar.gz scummvm-rg350-e9bef896462d6f99c4c89672de90c99e879415a2.tar.bz2 scummvm-rg350-e9bef896462d6f99c4c89672de90c99e879415a2.zip |
SCI32: Remove useless call
The show list is already cleared by showBits so it does not need to
be cleared a second time.
-rw-r--r-- | engines/sci/graphics/transitions32.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/sci/graphics/transitions32.cpp b/engines/sci/graphics/transitions32.cpp index b5e498528d..8f18a60971 100644 --- a/engines/sci/graphics/transitions32.cpp +++ b/engines/sci/graphics/transitions32.cpp @@ -83,7 +83,6 @@ void GfxTransitions32::addShowRect(const Common::Rect &rect) { void GfxTransitions32::sendShowRects() { g_sci->_gfxFrameout->showBits(); - clearShowRects(); throttle(); } |