diff options
| -rw-r--r-- | engines/kyra/wsamovie.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/kyra/wsamovie.cpp b/engines/kyra/wsamovie.cpp index 0aca374346..0bd6bf5005 100644 --- a/engines/kyra/wsamovie.cpp +++ b/engines/kyra/wsamovie.cpp @@ -65,7 +65,7 @@ int WSAMovie_v1::open(const char *filename, int offscreenDecode, uint8 *palBuf)  		offsPal = 0x300;  		_flags |= WF_HAS_PALETTE;  		if (palBuf) -			memcpy(palBuf, wsaData + (_numFrames + 2) * 4, 0x300); +			memcpy(palBuf, wsaData + 8 + (_numFrames << 2), 0x300);  	}  	if (offscreenDecode) { | 
