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.
This commit is contained in:
Joseph-Eugene Winzer 2018-03-18 21:36:41 +01:00 committed by Eugene Sandulenko
parent d9aa76796d
commit 399d1e26cb

View File

@ -257,6 +257,7 @@ void LilliputEngine::update() {
CursorMan.popCursor();
}
_system->copyRectToScreen((byte *)_mainSurface->getPixels(), 320, 0, 0, 320, 200);
_system->updateScreen();
}
}