diff options
author | Johannes Schickel | 2009-10-31 19:53:52 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-10-31 19:53:52 +0000 |
commit | fa506b5f0a8914af0c84524eb654f4b0a9ca8b7d (patch) | |
tree | c4e0026cfb00a6a4e24cea4db37d5a936a22db41 /engines | |
parent | 45208bc53d8bf43b2b30697787f17db6a1247e91 (diff) | |
download | scummvm-rg350-fa506b5f0a8914af0c84524eb654f4b0a9ca8b7d.tar.gz scummvm-rg350-fa506b5f0a8914af0c84524eb654f4b0a9ca8b7d.tar.bz2 scummvm-rg350-fa506b5f0a8914af0c84524eb654f4b0a9ca8b7d.zip |
Fix missing inventory in Kyrandia 1 PC98 16 color version, when loading a save via launcher or command line.
svn-id: r45581
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/screen_lok.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/kyra/screen_lok.cpp b/engines/kyra/screen_lok.cpp index 553c49de29..fbee0c0edb 100644 --- a/engines/kyra/screen_lok.cpp +++ b/engines/kyra/screen_lok.cpp @@ -274,6 +274,7 @@ void Screen_LoK_16::setScreenPalette(const Palette &pal) { paletteMap(i, pal[i * 3 + 0] << 2, pal[i * 3 + 1] << 2, pal[i * 3 + 2] << 2); set16ColorPalette(_palette16); + _forceFullUpdate = true; } void Screen_LoK_16::fadePalette(const Palette &pal, int delay, const UpdateFunctor *upFunc) { |