| 5633 | |
| 5634 | |
| 5635 | void updateVideoFormatTimer(const float dt) { |
| 5636 | // update test video format timer |
| 5637 | if (testVideoFormatTimer > 0.0f) { |
| 5638 | testVideoFormatTimer -= dt; |
| 5639 | if (testVideoFormatTimer <= 0.0f) { |
| 5640 | testVideoFormatTimer = 0.0f; |
| 5641 | setVideoFormat(testVideoPrevFormat); |
| 5642 | } |
| 5643 | } |
| 5644 | } |
| 5645 | |
| 5646 | |
| 5647 |
no test coverage detected