file-gif-save: Remove dead assignments
This commit is contained in:
@ -1500,7 +1500,6 @@ gif_encode_graphic_control_ext (FILE *fp,
|
|||||||
int BitsPerPixel,
|
int BitsPerPixel,
|
||||||
ifunptr get_pixel)
|
ifunptr get_pixel)
|
||||||
{
|
{
|
||||||
int RWidth, RHeight;
|
|
||||||
int LeftOfs, TopOfs;
|
int LeftOfs, TopOfs;
|
||||||
int Resolution;
|
int Resolution;
|
||||||
int ColorMapSize;
|
int ColorMapSize;
|
||||||
@ -1508,8 +1507,8 @@ gif_encode_graphic_control_ext (FILE *fp,
|
|||||||
|
|
||||||
ColorMapSize = 1 << BitsPerPixel;
|
ColorMapSize = 1 << BitsPerPixel;
|
||||||
|
|
||||||
RWidth = Width = GWidth;
|
Width = GWidth;
|
||||||
RHeight = Height = GHeight;
|
Height = GHeight;
|
||||||
LeftOfs = TopOfs = 0;
|
LeftOfs = TopOfs = 0;
|
||||||
|
|
||||||
Resolution = BitsPerPixel;
|
Resolution = BitsPerPixel;
|
||||||
|
Reference in New Issue
Block a user