| 150 | } |
| 151 | |
| 152 | void InputRecordingFile::setTotalFrames(u32 frame) |
| 153 | { |
| 154 | if (m_recordingFile == nullptr) |
| 155 | { |
| 156 | return; |
| 157 | } |
| 158 | m_totalFrames = frame; |
| 159 | fseek(m_recordingFile, s_seekpointTotalFrames, SEEK_SET); |
| 160 | fwrite(&m_totalFrames, 4, 1, m_recordingFile); |
| 161 | InputRecording::InformGSThread(); |
| 162 | } |
| 163 | |
| 164 | bool InputRecordingFile::writeHeader() const |
| 165 | { |
no outgoing calls
no test coverage detected