| 203 | } |
| 204 | |
| 205 | void I_ResetFrameTime() |
| 206 | { |
| 207 | // Reset the starting point of the current frame to now. For use after lengthy operations that should not result in tic accumulation. |
| 208 | auto ft = CurrentFrameStartTime; |
| 209 | I_SetFrameTime(); |
| 210 | FirstFrameStartTime += (CurrentFrameStartTime - ft); |
| 211 | } |
| 212 | |
| 213 | double I_GetInputFrac() |
| 214 | { |
no test coverage detected