Don't cap max-threads to current cpu count.

Change-Id: Ie437c0eccff0de0d9175633e004449211c141f6a
diff --git a/driver/rsdCore.cpp b/driver/rsdCore.cpp
index a730acc..33ab49a 100644
--- a/driver/rsdCore.cpp
+++ b/driver/rsdCore.cpp
@@ -233,7 +233,7 @@
 
 
     int cpu = sysconf(_SC_NPROCESSORS_ONLN);
-    if(rsc->props.mDebugMaxThreads && (cpu > (int)rsc->props.mDebugMaxThreads)) {
+    if(rsc->props.mDebugMaxThreads) {
         cpu = rsc->props.mDebugMaxThreads;
     }
     if (cpu < 2) {