| 582 | } |
| 583 | |
| 584 | void fxResumeProfiler(txMachine* the) |
| 585 | { |
| 586 | txProfiler* profiler = the->profiler; |
| 587 | if (!profiler) |
| 588 | return; |
| 589 | txU8 delta = fxGetTicks() - profiler->stop; |
| 590 | profiler->when += delta; |
| 591 | profiler->former += delta; |
| 592 | profiler->start += delta; |
| 593 | } |
| 594 | |
| 595 | void fxSuspendProfiler(txMachine* the) |
| 596 | { |
nothing calls this directly
no test coverage detected