Stop the Frametime clock
| 2716 | |
| 2717 | // Stop the Frametime clock |
| 2718 | void StopTime() { |
| 2719 | if (!timer_paused) { |
| 2720 | last_timer = timer_GetMSTime() - last_timer; |
| 2721 | if (last_timer < 0) { |
| 2722 | // Int3(); |
| 2723 | last_timer = 0; |
| 2724 | } |
| 2725 | } |
| 2726 | |
| 2727 | timer_paused++; |
| 2728 | } |
| 2729 | |
| 2730 | // Restart the Frametime clock |
| 2731 | void StartTime() { |
no outgoing calls
no test coverage detected