| 217 | } |
| 218 | |
| 219 | void InputRecordingFile::logRecordingMetadata() |
| 220 | { |
| 221 | InputRec::consoleMultiLog({fmt::format("File: {}", getFilename()), |
| 222 | fmt::format("PCSX2 Version Used: {}", m_header.m_emulatorVersion), |
| 223 | fmt::format("Recording File Version: {}", m_header.m_fileVersion), |
| 224 | fmt::format("Associated Game Name or ISO Filename: {}", m_header.m_gameName), |
| 225 | fmt::format("Author: {}", m_header.m_author), |
| 226 | fmt::format("Total Frames: {}", getTotalFrames()), |
| 227 | fmt::format("Undo Count: {}", getUndoCount())}); |
| 228 | } |
| 229 | |
| 230 | std::vector<PadData> InputRecordingFile::bulkReadPadData(u32 frameStart, u32 frameEnd, const uint port) |
| 231 | { |
no test coverage detected