diff options
author | Martin Kiewitz | 2010-06-20 16:36:34 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-06-20 16:36:34 +0000 |
commit | 8fcb14d235cc4dbfc25eb503d197ff5c2f268179 (patch) | |
tree | ab6d8cc6b449fc524db96994d1c1443fd19e8185 /engines/sci | |
parent | b016c16300577ae29d5a78e5be532cef3d4e21ce (diff) | |
download | scummvm-rg350-8fcb14d235cc4dbfc25eb503d197ff5c2f268179.tar.gz scummvm-rg350-8fcb14d235cc4dbfc25eb503d197ff5c2f268179.tar.bz2 scummvm-rg350-8fcb14d235cc4dbfc25eb503d197ff5c2f268179.zip |
SCI: adding kPalVary update call to kFrameout - it's getting morning now in gabriel knight 1
svn-id: r50083
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/graphics/frameout.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp index f16f1068a9..d8f7285887 100644 --- a/engines/sci/graphics/frameout.cpp +++ b/engines/sci/graphics/frameout.cpp @@ -37,6 +37,7 @@ #include "sci/graphics/view.h" #include "sci/graphics/screen.h" #include "sci/graphics/paint32.h" +#include "sci/graphics/palette.h" #include "sci/graphics/picture.h" #include "sci/graphics/frameout.h" @@ -121,6 +122,8 @@ void GfxFrameout::kernelFrameout() { FrameoutList itemList; FrameoutEntry *itemEntry; + _palette->palVaryUpdate(); + // Allocate enough space for all screen items itemData = (FrameoutEntry *)malloc(_screenItems.size() * sizeof(FrameoutEntry)); |