diff options
author | whiterandrek | 2018-06-20 23:15:14 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | a9c3826b0f1c0d9b8c589abc0c451dfc4eea3efa (patch) | |
tree | 49c0e92688df6a7cf529571f6dd1247b4cd015e8 /engines | |
parent | 3e2c9b6bc2815d1777ff2f93723994c7efbe64aa (diff) | |
download | scummvm-rg350-a9c3826b0f1c0d9b8c589abc0c451dfc4eea3efa.tar.gz scummvm-rg350-a9c3826b0f1c0d9b8c589abc0c451dfc4eea3efa.tar.bz2 scummvm-rg350-a9c3826b0f1c0d9b8c589abc0c451dfc4eea3efa.zip |
PINK: added updating screen after setting cursor
Diffstat (limited to 'engines')
-rw-r--r-- | engines/pink/pink.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/pink/pink.cpp b/engines/pink/pink.cpp index ffa35a2cc4..a91c4f4d24 100644 --- a/engines/pink/pink.cpp +++ b/engines/pink/pink.cpp @@ -253,6 +253,7 @@ void PinkEngine::setCursor(uint cursorIndex) { _system->setCursorPalette(cursor->getPalette(), cursor->getPaletteStartIndex(), cursor->getPaletteCount()); _system->setMouseCursor(cursor->getSurface(), cursor->getWidth(), cursor->getHeight(), cursor->getHotspotX(), cursor->getHotspotY(), cursor->getKeyColor()); + _system->updateScreen(); } Common::Error PinkEngine::loadGameState(int slot) { |