diff options
author | Johannes Schickel | 2013-08-12 04:47:11 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-08-12 04:52:30 +0200 |
commit | d05f90fa0fe71750c6126fc0f14c4215cf3bfc32 (patch) | |
tree | ce6d2b9406071ef7bdbd587b1d881dce01f7e945 | |
parent | 3134e4a4ba3067815364a1c1ca0ccf441a463782 (diff) | |
download | scummvm-rg350-d05f90fa0fe71750c6126fc0f14c4215cf3bfc32.tar.gz scummvm-rg350-d05f90fa0fe71750c6126fc0f14c4215cf3bfc32.tar.bz2 scummvm-rg350-d05f90fa0fe71750c6126fc0f14c4215cf3bfc32.zip |
KYRA: Fix palette glitch in Kyra3 when loading from main menu.
Formerly, the main menu was shown with the palette of the first screen for
a short time. Thanks to eriktorbjorn for noticing this.
-rw-r--r-- | engines/kyra/scene_mr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/kyra/scene_mr.cpp b/engines/kyra/scene_mr.cpp index c9486d9c45..d2b4907b6a 100644 --- a/engines/kyra/scene_mr.cpp +++ b/engines/kyra/scene_mr.cpp @@ -577,6 +577,7 @@ void KyraEngine_MR::initSceneScreen(int unk1) { } updateCharPal(0); + _screen->updateScreen(); if (!_menuDirectlyToLoad) { _emc->start(&_sceneScriptState, 3); |