| 38 | } |
| 39 | |
| 40 | void SyncLogger::AddRNGCallSyncLogEvent(Randomizer* pRandomizer, int type, unsigned int callerAddress, int min, int max) |
| 41 | { |
| 42 | MakeCallerRelative(callerAddress); |
| 43 | // Don't log non-critical RNG calls. |
| 44 | if (pRandomizer == &ScenarioClass::Instance->Random) |
| 45 | SyncLogger::RNGCalls.Add(RNGCallSyncLogEvent(type, true, pRandomizer->Next1, pRandomizer->Next2, callerAddress, Unsorted::CurrentFrame, min, max)); |
| 46 | } |
| 47 | |
| 48 | void SyncLogger::AddFacingChangeSyncLogEvent(unsigned short facing, unsigned int callerAddress) |
| 49 | { |
nothing calls this directly
no test coverage detected