플로우 약간 수정

This commit is contained in:
mjjo
2016-07-07 19:08:39 +09:00
parent c0a93e082a
commit 8f5a36f2ee
3 changed files with 68 additions and 11 deletions

View File

@@ -95,6 +95,12 @@ namespace upper_limit_crawler
// return;
int iCurTime = Environment.TickCount;
if(m_iLastTime == 0)
{
m_iLastTime=iCurTime;
return;
}
int iDeltaT = iCurTime - m_iLastTime;
m_Monitor.Refresh(iCurTime);