From 61e6a03d70c2e8af5834c148f82e8361591398e5 Mon Sep 17 00:00:00 2001 From: orignal Date: Wed, 20 Jul 2016 09:33:50 -0400 Subject: [PATCH] check correct #ifdef for windows --- Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config.cpp b/Config.cpp index 9e18ff55..2a35ce7e 100644 --- a/Config.cpp +++ b/Config.cpp @@ -128,7 +128,7 @@ namespace config { ; bool upnp_default = false; -#if (defined(USE_UPNP) && ((defined(WIN32) && defined(USE_WIN32_APP)) || defined(ANDROID))) +#if (defined(USE_UPNP) && (defined(WIN32_APP) || defined(ANDROID))) upnp_default = true; // enable UPNP for windows GUI and android by default #endif options_description upnp("UPnP options");