| 211 | } |
| 212 | |
| 213 | bool sGameRecorded::GetVideoTick(const uint64 pTick) { |
| 214 | std::lock_guard<std::mutex> lock(mLockMtx); |
| 215 | |
| 216 | return std::binary_search(mVideoTicks.begin(), mVideoTicks.end(), pTick); |
| 217 | } |
| 218 | |
| 219 | void sGameRecorded::DisableTicks() { |
| 220 | // Version 1 Demos didnt stop ticks |
no test coverage detected