diff options
author | Joseph-Eugene Winzer | 2018-03-18 21:36:41 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-28 17:36:57 +0200 |
commit | 399d1e26cbf06ed41edd9f76f92115381ed3e095 (patch) | |
tree | 1ef1ca81c313efca67cdcefeffc6e31ad0e45825 | |
parent | d9aa76796d1eed5a4ce6f5b0b1f2d09a28290555 (diff) | |
download | scummvm-rg350-399d1e26cbf06ed41edd9f76f92115381ed3e095.tar.gz scummvm-rg350-399d1e26cbf06ed41edd9f76f92115381ed3e095.tar.bz2 scummvm-rg350-399d1e26cbf06ed41edd9f76f92115381ed3e095.zip |
LILLIPUT: Fixes rendering by blitting mainSurface to screen
Before displayMousePointer() that calls display16x16IndexedBuf() did the
blit and I forgot to add it when removing the custom cursor handling in
38cd5b2ac3.
-rw-r--r-- | engines/lilliput/lilliput.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/lilliput/lilliput.cpp b/engines/lilliput/lilliput.cpp index 74dff08dad..89a5472e5e 100644 --- a/engines/lilliput/lilliput.cpp +++ b/engines/lilliput/lilliput.cpp @@ -257,6 +257,7 @@ void LilliputEngine::update() { CursorMan.popCursor(); } + _system->copyRectToScreen((byte *)_mainSurface->getPixels(), 320, 0, 0, 320, 200); _system->updateScreen(); } } |