Closed fire-eggs closed 4 years ago
Just getting started but so far this project is looking fantastic!!
A blocker for Windows users: in Fl_Anim_GIF_Image.cxx, in the function readin, the following line (at or about line 548):
Fl_Anim_GIF_Image.cxx
readin
FILE *gif = fopen(name_, "r");
needs to be changed to:
FILE *gif = fopen(name_, "rb");
Without the binary flag, Windows will stop reading at the first zero byte.
Thank you very much for the report.
Just getting started but so far this project is looking fantastic!!
A blocker for Windows users: in
Fl_Anim_GIF_Image.cxx
, in the functionreadin
, the following line (at or about line 548):needs to be changed to:
Without the binary flag, Windows will stop reading at the first zero byte.