Browse Source

Add description for nthread_has_500ms_passed (#2141)

pull/910/head
Anders Jenbo 6 years ago committed by GitHub
parent
commit
064173fef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      Source/nthread.cpp

6
Source/nthread.cpp

@ -222,6 +222,12 @@ void nthread_ignore_mutex(BOOL bStart)
}
}
/**
* @brief Checks if it's time for the logic to advance
* @param unused
* @return True if the engine should tick
*/
BOOL nthread_has_500ms_passed(BOOL unused)
{
DWORD currentTickCount;

Loading…
Cancel
Save