| 261 | //========================================================================== |
| 262 | |
| 263 | void FRandom::Init(uint32_t seed) |
| 264 | { |
| 265 | // [RH] Use the RNG's name's CRC to modify the original seed. |
| 266 | // This way, new RNGs can be added later, and it doesn't matter |
| 267 | // which order they get initialized in. |
| 268 | SFMTObj::Init(NameCRC, seed); |
| 269 | } |
| 270 | |
| 271 | //========================================================================== |
| 272 | // |
no test coverage detected