From e877595ff7a40692fcc52a43504315e66fa40ec1 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Sun, 10 Dec 2017 20:16:41 -0500 Subject: [PATCH] add buildbot url for msvc2003 (Windows 95) --- config.def.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index 34eefd9fa4..38dd96eb3f 100644 --- a/config.def.h +++ b/config.def.h @@ -662,11 +662,10 @@ static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/window static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2010/x86/latest/"; #endif #elif _MSC_VER == 1400 -#if defined(__x86_64__) -static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2005/x86_64/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-msvc2005/x86/latest/"; #endif +#elif _MSC_VER == 1310 +static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2003/x86/latest/"; #else #if defined(__x86_64__) static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows/x86_64/latest/";