diff options
author | Eugene Sandulenko | 2014-05-05 00:52:56 +0300 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 4474ccf8144563c4bacbb060c943c0f68e317cea (patch) | |
tree | a3e31d55b72be1a0717db5ba3c97020631f0f50f /gui/ThemeEngine.cpp | |
parent | f0c52096f3e9215cb584b3862f2cd4b9632761d5 (diff) | |
download | scummvm-rg350-4474ccf8144563c4bacbb060c943c0f68e317cea.tar.gz scummvm-rg350-4474ccf8144563c4bacbb060c943c0f68e317cea.tar.bz2 scummvm-rg350-4474ccf8144563c4bacbb060c943c0f68e317cea.zip |
GUI: Implemented alphabitmap autoscale
Diffstat (limited to 'gui/ThemeEngine.cpp')
-rw-r--r-- | gui/ThemeEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index 26729b916f..545b9b5c56 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -334,7 +334,7 @@ void ThemeItemABitmap::drawSelf(bool draw, bool restore) { _engine->restoreBackground(_area); if (draw) - _engine->renderer()->blitAlphaBitmap(_bitmap, _area); + _engine->renderer()->blitAlphaBitmap(_bitmap, _area, false); _engine->addDirtyRect(_area); } |