Skip to content

Commit

Permalink
LILLIPUT: Fix draw interface icons
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvaintv authored and sev- committed Mar 28, 2018
1 parent 8019c8b commit 3f10768
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/lilliput/lilliput.cpp
Expand Up @@ -464,7 +464,7 @@ void LilliputEngine::displayFunction8() {

int index = 0;
int tmpVal;
for (int i = 0; i < _word12F68_ERULES; i++) {
for (index = 0; index < _word12F68_ERULES; index++) {
tmpVal = ((_scriptHandler->_array122E9[index] << 2) + (_scriptHandler->_array122E9[index] << 4)) & 0xFF;
displayFunction1(_bufferIdeogram, tmpVal + index, _rulesBuffer13_2[index], _rulesBuffer13_3[index]);
}
Expand Down Expand Up @@ -591,6 +591,7 @@ void LilliputEngine::displayFunction12() {
_system->copyRectToScreen((byte *)_mainSurface->getPixels(), 320, 0, 0, 320, 200);
_system->updateScreen();


displayFunction6();
displayFunction7();
displayFunction8();
Expand Down

0 comments on commit 3f10768

Please sign in to comment.