| 45 | } |
| 46 | |
| 47 | void VideoScreen::begin() |
| 48 | { |
| 49 | last_frame_time = std::chrono::high_resolution_clock::now(); |
| 50 | if (this->video) |
| 51 | { |
| 52 | this->current_frame = this->video->popImage(); |
| 53 | |
| 54 | fw().soundBackend->setTrack(video->getMusicTrack()); |
| 55 | fw().soundBackend->playMusic([](void *) {}, nullptr); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | void VideoScreen::pause() {} |
| 60 |
nothing calls this directly
no test coverage detected