Change default find parameters to unlimited.

This commit is contained in:
Bartosz Taudul 2018-03-04 16:07:10 +01:00
parent dca7338319
commit b09bae07c4

View File

@ -164,8 +164,8 @@ private:
bool show; bool show;
std::vector<std::unique_ptr<ThreadData>> result; std::vector<std::unique_ptr<ThreadData>> result;
char pattern[1024] = { "" }; char pattern[1024] = { "" };
int maxZonesPerThread = 1000; int maxZonesPerThread = -1;
int maxDepth = 10; int maxDepth = -1;
bool logVal = false; bool logVal = false;
bool logTime = false; bool logTime = false;
} m_findZone; } m_findZone;