| 217 | } |
| 218 | |
| 219 | BOOL nthread_has_500ms_passed(BOOL unused) |
| 220 | { |
| 221 | DWORD currentTickCount; |
| 222 | int ticksElapsed; |
| 223 | |
| 224 | currentTickCount = SDL_GetTicks(); |
| 225 | ticksElapsed = currentTickCount - last_tick; |
| 226 | if (gbMaxPlayers == 1 && ticksElapsed > 500) { |
| 227 | last_tick = currentTickCount; |
| 228 | ticksElapsed = 0; |
| 229 | } |
| 230 | return ticksElapsed >= 0; |
| 231 | } |
| 232 | |
| 233 | DEVILUTION_END_NAMESPACE |
no outgoing calls
no test coverage detected