Fixed a bug

This commit is contained in:
Nathan Dinsmore 2014-05-14 14:41:23 -04:00
parent 452c9672a9
commit bd5572656c

View file

@ -209,7 +209,7 @@ public class GIFDecoder {
// assume background is transparent
var c:Number = transparency ? 0x00000000 : lastBgColor;
// use given background color
bitmap.fillRect(lastRect, c);
bitmap.fillRect(bitmap.rect, c);
}
}
}