===========================================================================
| 8588 | |
| 8589 | //=========================================================================== |
| 8590 | ProfileLine_t ProfileLinePush () |
| 8591 | { |
| 8592 | if (g_nProfileLine < NUM_PROFILE_LINES) |
| 8593 | { |
| 8594 | g_nProfileLine++; |
| 8595 | } |
| 8596 | |
| 8597 | return ProfileLinePeek( g_nProfileLine ); |
| 8598 | } |
| 8599 | |
| 8600 | void ProfileLineReset () |
| 8601 | { |
no test coverage detected