From f20e85a45d5da197d2fa017b90f459a9b18cd390 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 18 Oct 2013 11:30:33 -0700 Subject: [PATCH] Client: parse project pref; this is deprecated but Einstein@home is running old server code that sends it. --- client/cs_account.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/cs_account.cpp b/client/cs_account.cpp index 4577171d97..ccef659110 100644 --- a/client/cs_account.cpp +++ b/client/cs_account.cpp @@ -145,6 +145,10 @@ int PROJECT::parse_account(FILE* in) { if (btemp) handle_no_rsc_pref(this, GPU_TYPE_ATI); continue; } + else if (xp.parse_bool("no_intel_gpu", btemp)) { + if (btemp) handle_no_rsc_pref(this, GPU_TYPE_INTEL); + continue; + } else if (xp.parse_str("no_rsc", buf2, sizeof(buf2))) { handle_no_rsc_pref(this, buf2);