1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Replace HTTP links with HTTPS for sites with HTTPS versions

This commit is contained in:
Aaron Franke
2021-08-21 20:56:25 -05:00
parent bb1c930a41
commit ae1702bee5
55 changed files with 83 additions and 83 deletions

View File

@@ -575,7 +575,7 @@ void ReadBinaryDataArray(char type, uint32_t count, const char *&data, const cha
std::copy(data, end, buff.begin());
} else if (encmode == 1) {
// zlib/deflate, next comes ZIP head (0x78 0x01)
// see http://www.ietf.org/rfc/rfc1950.txt
// see https://www.ietf.org/rfc/rfc1950.txt
z_stream zstream;
zstream.opaque = Z_NULL;