Temp download from resource server over https

This commit is contained in:
UnknownShadow200 2023-01-14 07:44:51 +11:00
parent ed547fdb1e
commit 8077a9f5cf

View File

@ -84,7 +84,7 @@ CC_NOINLINE static int MusicResource_Download(const char* hash) {
cc_string url; char urlBuffer[URL_MAX_SIZE];
String_InitArray(url, urlBuffer);
String_Format3(&url, "http://resources.download.minecraft.net/%r%r/%c",
String_Format3(&url, "https://resources.download.minecraft.net/%r%r/%c",
&hash[0], &hash[1], hash);
return Http_AsyncGetData(&url, 0);
}