diff options
author | lukaslw | 2014-08-15 21:04:55 +0200 |
---|---|---|
committer | lukaslw | 2014-08-15 21:04:55 +0200 |
commit | 40ac742169db49e16756092f6e9bd28b23b8d7e3 (patch) | |
tree | c9595a766c9e833b5c03695121435543d45db749 /engines | |
parent | 89bda02eb111d0aefb8a81115b0986eff07321ed (diff) | |
download | scummvm-rg350-40ac742169db49e16756092f6e9bd28b23b8d7e3.tar.gz scummvm-rg350-40ac742169db49e16756092f6e9bd28b23b8d7e3.tar.bz2 scummvm-rg350-40ac742169db49e16756092f6e9bd28b23b8d7e3.zip |
PRINCE: initZoomIn() update
Diffstat (limited to 'engines')
-rw-r--r-- | engines/prince/prince.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/prince/prince.cpp b/engines/prince/prince.cpp index 9517b02691..cfd1e77628 100644 --- a/engines/prince/prince.cpp +++ b/engines/prince/prince.cpp @@ -1576,6 +1576,7 @@ void PrinceEngine::initZoomIn(int slot) { object->_flags |= 0x8000; object->_zoomSurface = new Graphics::Surface(); object->_zoomSurface->create(zoomSource->w, zoomSource->h, Graphics::PixelFormat::createFormatCLUT8()); + object->_zoomSurface->fillRect(Common::Rect(zoomSource->w, zoomSource->h), 0xFF); object->_zoomTime = 20; } } |