Restart the Frametime clock
| 2729 | |
| 2730 | // Restart the Frametime clock |
| 2731 | void StartTime() { |
| 2732 | if (timer_paused == 0) |
| 2733 | return; |
| 2734 | |
| 2735 | timer_paused--; |
| 2736 | |
| 2737 | ASSERT(timer_paused >= 0); |
| 2738 | |
| 2739 | if (!timer_paused) |
| 2740 | last_timer = timer_GetMSTime() - last_timer; |
| 2741 | } |
| 2742 | |
| 2743 | float Min_frametime = 500; |
| 2744 | float Max_frametime = 0; |
no outgoing calls
no test coverage detected