Browse Source

Cleanup

Former-commit-id: 4a89054a2371a1fa3f08db383b2395592e4b5330
Former-commit-id: de45e42417135c49b8e984c0bac792648cb27dd6
Former-commit-id: 8251dff9c6fa310a15ad51b20912a703d7081ea4
af/merge-core
James Jackson-South 10 years ago
parent
commit
c803f581f4
  1. 3
      src/ImageProcessor/Formats/Gif/GifDecoderCore.cs

3
src/ImageProcessor/Formats/Gif/GifDecoderCore.cs

@ -7,7 +7,6 @@ namespace ImageProcessor.Formats
{
using System;
using System.IO;
using System.Threading.Tasks;
/// <summary>
/// Performs the gif decoding operation.
@ -412,7 +411,7 @@ namespace ImageProcessor.Formats
offset = ((y * imageWidth) + x) * 4;
// Stored in r-> g-> b-> a order.
this.currentFrame[offset + 0] = 0;
this.currentFrame[offset] = 0;
this.currentFrame[offset + 1] = 0;
this.currentFrame[offset + 2] = 0;
this.currentFrame[offset + 3] = 0;

Loading…
Cancel
Save