Skip to content

Commit

Permalink
SHERLOCK: Fix palette for RT scene
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 25, 2015
1 parent ef4d8be commit 40afa01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/sherlock/scene.cpp
Expand Up @@ -321,7 +321,8 @@ bool Scene::loadScene(const Common::String &filename) {

if (IS_ROSE_TATTOO) {
screen.initPaletteFade(bgHeader._bytesWritten);
screen.fadeRead(*rrmStream, screen._cMap, PALETTE_SIZE);
rrmStream->read(screen._cMap, PALETTE_SIZE);
screen.translatePalette(screen._cMap);
screen.setupBGArea(screen._cMap);

screen.initScrollVars();
Expand Down

0 comments on commit 40afa01

Please sign in to comment.