From 6bf34c36ed8aa7e920802921353d25c16c57e82a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 15 Mar 2018 00:38:30 +0100 Subject: [PATCH] Update net_http_test --- libretro-common/samples/net/net_http_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/samples/net/net_http_test.c b/libretro-common/samples/net/net_http_test.c index 8df530b2f1..448c6dbdde 100644 --- a/libretro-common/samples/net/net_http_test.c +++ b/libretro-common/samples/net/net_http_test.c @@ -37,7 +37,7 @@ int main(void) if (!network_init()) return -1; - http1 = net_http_new("http://buildbot.libretro.com/nightly/win-x86/latest/mednafen_psx_libretro.dll.zip"); + http1 = net_http_new("http://buildbot.libretro.com/nightly/windows/x86_64/latest/mednafen_psx_libretro.dll.zip"); while (!net_http_update(http1, &pos, &tot)) printf("%.9lu / %.9lu \r",pos,tot);