diff options
Diffstat (limited to 'AnvilStats/Processor.cpp')
-rw-r--r-- | AnvilStats/Processor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AnvilStats/Processor.cpp b/AnvilStats/Processor.cpp index 02070a8fc..8b506791c 100644 --- a/AnvilStats/Processor.cpp +++ b/AnvilStats/Processor.cpp @@ -507,12 +507,12 @@ void cProcessor::ProcessWorld(const AString & a_WorldFolder, cCallbackFactory & // (One more thread can be in the file-read IO block while all other threads crunch the numbers)
int NumThreads = GetNumCores() + 1;
- /*
+ //*
// Limit the number of threads in DEBUG mode to 1 for easier debugging
#ifdef _DEBUG
NumThreads = 1;
#endif // _DEBUG
- */
+ //*/
for (int i = 0; i < NumThreads; i++)
{
|