| 292 | } |
| 293 | |
| 294 | void interval_timer::init() |
| 295 | { |
| 296 | if (!g_timer_freq) |
| 297 | { |
| 298 | query_counter_frequency(&g_freq); |
| 299 | g_timer_freq = 1.0f / g_freq; |
| 300 | query_counter(&g_init_ticks); |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | timer_ticks interval_timer::get_ticks() |
| 305 | { |
nothing calls this directly
no test coverage detected