Browse Source

If there are more devices than nDevs, don't iterate over them as they may overwrite devices mapped below that with the mapping option.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
afa7310e9c
  1. 3
      adl.c

3
adl.c

@ -339,6 +339,9 @@ void init_adl(int nDevs) @@ -339,6 +339,9 @@ void init_adl(int nDevs)
}
}
if (devices > nDevs)
devices = nDevs;
for (gpu = 0; gpu < devices; gpu++) {
struct gpu_adl *ga;
int iAdapterIndex;

Loading…
Cancel
Save