diff --git a/src/mills.cpp b/src/mills.cpp index 0dbb2090..dc43b458 100644 --- a/src/mills.cpp +++ b/src/mills.cpp @@ -428,6 +428,10 @@ void move_priority_list_shuffle() Depth getSearchDepth(const Position *pos) { +#if defined(FIX_DEPTH) + return FIX_DEPTH; +#endif + Depth d = 0; #ifdef _DEBUG @@ -572,10 +576,6 @@ Depth getSearchDepth(const Position *pos) d = d >= 1 ? d : 1; -#if defined(FIX_DEPTH) - d = FIX_DEPTH; -#endif - assert(d <= 32); //loggerDebug("Depth: %d\n", d);