Use THREAD_MAX instead of hardcoded 8

This will allow to change THREAD_MAX value in the future.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2009-12-27 13:52:29 +01:00
parent 4d9e9ac3d4
commit b884351cc7
2 changed files with 5 additions and 4 deletions

View File

@@ -122,7 +122,7 @@ namespace {
o["Randomness"] = Option(0, 0, 10);
o["Minimum Split Depth"] = Option(4, 4, 7);
o["Maximum Number of Threads per Split Point"] = Option(5, 4, 8);
o["Threads"] = Option(1, 1, 8);
o["Threads"] = Option(1, 1, THREAD_MAX);
o["Hash"] = Option(32, 4, 2048);
o["Clear Hash"] = Option(false, BUTTON);
o["New Game"] = Option(false, BUTTON);