From 70d8c6663758070bf10a3689b16ad6a41399ac5a Mon Sep 17 00:00:00 2001 From: Lactozilla Date: Tue, 16 Jan 2024 14:26:25 -0300 Subject: [PATCH] Use https URL in comment instead of http --- src/r_picformats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_picformats.c b/src/r_picformats.c index 7702cefea..8117d08d5 100644 --- a/src/r_picformats.c +++ b/src/r_picformats.c @@ -901,7 +901,7 @@ void *Picture_TextureToFlat(size_t texnum) */ boolean Picture_IsLumpPNG(const UINT8 *d, size_t s) { - if (s < 67) // http://web.archive.org/web/20230524232139/http://garethrees.org/2007/11/14/pngcrush/ + if (s < 67) // https://web.archive.org/web/20230524232139/http://garethrees.org/2007/11/14/pngcrush/ return false; // Check for PNG file signature using memcmp // As it may be faster on CPUs with slow unaligned memory access