Fix random glitches in transparent animations

This commit is contained in:
Perttu Ahola 2012-06-18 00:21:23 +03:00
parent c57e5083e8
commit 48790c0751
1 changed files with 3 additions and 0 deletions

View File

@ -1679,6 +1679,9 @@ bool generate_image(std::string part_of_name, video::IImage *& baseimg,
return false;
}
// Fill target image with transparency
img->fill(video::SColor(0,0,0,0));
core::dimension2d<u32> dim = frame_size;
core::position2d<s32> pos_dst(0, 0);
core::position2d<s32> pos_src(0, frame_index * frame_size.Y);