Add fix for bug #1519327 - FF: Stack corruption

svn-id: r23442
This commit is contained in:
Travis Howell 2006-07-08 23:38:29 +00:00
parent 5e1bf44046
commit 8cb98dc45c

View File

@ -270,7 +270,7 @@ void MoviePlayer::setPalette(byte *pal) {
byte palette[1024];
byte *p = palette;
for (int i = 0; i <= 256; i++) {
for (int i = 0; i < 256; i++) {
*p++ = *pal++;
*p++ = *pal++;
*p++ = *pal++;