| 280 | } |
| 281 | |
| 282 | void InputRecording::handleExceededFrameCounter() |
| 283 | { |
| 284 | // if we go past the end, switch to recording mode so nothing is lost |
| 285 | if (m_frame_counter >= m_file.getTotalFrames() && m_controls.isReplaying()) |
| 286 | { |
| 287 | m_controls.setRecordMode(false); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | void InputRecording::handleReset() |
| 292 | { |
no test coverage detected