just a format

This commit is contained in:
omegablast2002@yahoo.com
2013-02-10 14:34:13 +00:00
parent 3c15357c38
commit e24f269c36
+3 -3
View File
@@ -494,12 +494,12 @@ void GameStateDuel::Update(float dt)
size_t thread_count = 1; size_t thread_count = 1;
startTime = JGEGetTime(); startTime = JGEGetTime();
#ifdef QT_CONFIG #ifdef QT_CONFIG
thread_count = QThread::idealThreadCount(); thread_count = QThread::idealThreadCount();
#else #else
thread_count = 4; thread_count = 4;
#endif #endif
for(size_t i = 0; i < (thread_count); i++) for(size_t i = 0; i < (thread_count); i++)
mWorkerThread.push_back(boost::thread(ThreadProc, this)); mWorkerThread.push_back(boost::thread(ThreadProc, this));
} }