diff options
author | Johannes Schickel | 2009-06-25 19:52:49 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-06-25 19:52:49 +0000 |
commit | 55cb0c67383d47cf9d4f4a7bb04d24d89fcf91b9 (patch) | |
tree | fa8df70b8d9018d8db9f88c86e0956c32e80e310 /engines | |
parent | 17a2f52ac68940677d96560c54f113b9e947e5bf (diff) | |
download | scummvm-rg350-55cb0c67383d47cf9d4f4a7bb04d24d89fcf91b9.tar.gz scummvm-rg350-55cb0c67383d47cf9d4f4a7bb04d24d89fcf91b9.tar.bz2 scummvm-rg350-55cb0c67383d47cf9d4f4a7bb04d24d89fcf91b9.zip |
Cleanup.
svn-id: r41876
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/screen_lol.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/kyra/screen_lol.cpp b/engines/kyra/screen_lol.cpp index 54d64aa71c..b044cb89a6 100644 --- a/engines/kyra/screen_lol.cpp +++ b/engines/kyra/screen_lol.cpp @@ -283,8 +283,7 @@ void Screen_LoL::fadeClearSceneWindow(int delay) { return; Palette tpal(getPalette(0).getNumColors()); - tpal.copy(getPalette(0)); - memset(tpal.getData(), 0, 384); + tpal.copy(getPalette(0), 128); loadSpecialColors(tpal.getData()); fadePalette(tpal, delay); |