|
@@ -19,10 +19,10 @@ struct Gif_Animat
|
|
|
while (delay_time <= 0.0f) {
|
|
|
index = (index + 1) % file->ImageCount;
|
|
|
int ok = DGifSavedExtensionToGCB(file, index, &gcb);
|
|
|
- if (!ok) {
|
|
|
- println(stderr, "[ERROR] Could not retrieve Graphics Control Block from `", file_path, "`");
|
|
|
- abort();
|
|
|
- }
|
|
|
+ // if (!ok) {
|
|
|
+ // println(stderr, "[ERROR] Could not retrieve Graphics Control Block from `", file_path, "`");
|
|
|
+ // abort();
|
|
|
+ // }
|
|
|
delay_time = gcb.DelayTime + delay_time;
|
|
|
}
|
|
|
}
|