From 614cd3859fa3c0a9e2cf8c65ee34766ea1e6c66a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 17 May 2019 20:23:45 +0200 Subject: [PATCH] Fix URL strings --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 8f7ce3ecf5..97f18f2625 100644 --- a/config.def.h +++ b/config.def.h @@ -892,7 +892,7 @@ static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/apple/ #if _MSC_VER >= 1910 #ifndef __WINRT__ #if defined(__x86_64__) || defined(_M_X64) -static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2017-desktop/x86_64/latest/"; +static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2017-desktop/x64/latest/"; #elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64) static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2017-desktop/x86/latest/"; #elif defined(__arm__) || defined(_M_ARM) @@ -900,7 +900,7 @@ static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/window #endif #else #if defined(__x86_64__) || defined(_M_X64) -static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2017-uwp/x86_64/latest/"; +static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2017-uwp/x64/latest/"; #elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64) static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2017-uwp/x86/latest/"; #elif defined(__arm__) || defined(_M_ARM)