From 399d1e26cbf06ed41edd9f76f92115381ed3e095 Mon Sep 17 00:00:00 2001 From: Joseph-Eugene Winzer Date: Sun, 18 Mar 2018 21:36:41 +0100 Subject: 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. --- engines/lilliput/lilliput.cpp | 1 + 1 file changed, 1 insertion(+) 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(); } } -- cgit v1.2.3