Browse Source

Cleanup

Former-commit-id: cd2e893bbfbbfd910c793a55a2ee307d2a4e8436
Former-commit-id: 235e0faef20de30e79cea9fc70dcff11ff3c2c07
Former-commit-id: ed75e3def34c2436bcae108ee2cdb547606f5359
pull/17/head
James Jackson-South 10 years ago
parent
commit
09336bb748
  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