Commit ac131d313892fbe3e52b6eed664c53aeffd05ac0

Con Kolivas 2012-08-04T22:34:47

Merge pull request #279 from tyeken8/tydus Add scrypt support while writing conf

diff --git a/cgminer.c b/cgminer.c
index dd4b9a9..0504027 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -2944,6 +2944,20 @@ void write_config(FILE *fcfg)
 					break;
 			}
 		}
+#ifdef USE_SCRYPT
+		fputs("\",\n\"lookup-gap\" : \"", fcfg);
+		for(i = 0; i < nDevs; i++)
+			fprintf(fcfg, "%s%d", i > 0 ? "," : "",
+				(int)gpus[i].lookup_gap);
+		fputs("\",\n\"thread-concurrency\" : \"", fcfg);
+		for(i = 0; i < nDevs; i++)
+			fprintf(fcfg, "%s%d", i > 0 ? "," : "",
+				(int)gpus[i].thread_concurrency);
+		fputs("\",\n\"shaders\" : \"", fcfg);
+		for(i = 0; i < nDevs; i++)
+			fprintf(fcfg, "%s%d", i > 0 ? "," : "",
+				(int)gpus[i].shaders);
+#endif
 #ifdef HAVE_ADL
 		fputs("\",\n\"gpu-engine\" : \"", fcfg);
 		for(i = 0; i < nDevs; i++)