diff options
| author | Johannes Schickel | 2009-06-22 19:46:08 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2009-06-22 19:46:08 +0000 | 
| commit | 4597178cf949680e5b64f3f6ea93ea0783149804 (patch) | |
| tree | 3ca7b21061f91d0656bc498152e2e17bb45486f2 | |
| parent | fae143f72dab91171655b3a055c469dc6df8c14f (diff) | |
| download | scummvm-rg350-4597178cf949680e5b64f3f6ea93ea0783149804.tar.gz scummvm-rg350-4597178cf949680e5b64f3f6ea93ea0783149804.tar.bz2 scummvm-rg350-4597178cf949680e5b64f3f6ea93ea0783149804.zip | |
Fix palette regression in Lands of Lore.
svn-id: r41777
| -rw-r--r-- | engines/kyra/screen_lol.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/engines/kyra/screen_lol.cpp b/engines/kyra/screen_lol.cpp index f2d6a2565e..e66c1d4a4a 100644 --- a/engines/kyra/screen_lol.cpp +++ b/engines/kyra/screen_lol.cpp @@ -284,6 +284,7 @@ void Screen_LoL::fadeClearSceneWindow(int delay) {  	Palette tpal(getPalette(0).getNumColors());  	tpal.copy(getPalette(0)); +	memset(tpal.getData(), 0, 384);  	loadSpecialColors(tpal.getData());  	fadePalette(tpal, delay); | 
