Browse Source

check correct #ifdef for windows

pull/578/head
orignal 8 years ago
parent
commit
61e6a03d70
  1. 2
      Config.cpp

2
Config.cpp

@ -128,7 +128,7 @@ namespace config {
; ;
bool upnp_default = false; 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 upnp_default = true; // enable UPNP for windows GUI and android by default
#endif #endif
options_description upnp("UPnP options"); options_description upnp("UPnP options");

Loading…
Cancel
Save