From 4d9cd80b9223b5a56c64a9c2f0b1d6da9ff520a7 Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 22 May 2010 08:33:51 +0200 Subject: [PATCH] Fixed: Linux and Mac OS clients trying to download patches --- code/ryzom/client/src/client_cfg.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/ryzom/client/src/client_cfg.cpp b/code/ryzom/client/src/client_cfg.cpp index 36b197a52..7e927717b 100644 --- a/code/ryzom/client/src/client_cfg.cpp +++ b/code/ryzom/client/src/client_cfg.cpp @@ -365,7 +365,12 @@ CClientConfig::CClientConfig() MouseOverFX = "sfx_selection_mouseover.ps"; SelectionFXSize = 0.8f; + // only force patching under Windows by default +#ifdef NL_OS_WINDOWS PatchWanted = true; +#else + PatchWanted = false; +#endif PatchUrl = ""; PatchVersion = ""; RingReleaseNotePath = "http://atys.ryzom.com/releasenotes_ring/index.php";