* @brief Get the current RNG seed * @return RNG seed */
| 912 | * @return RNG seed |
| 913 | */ |
| 914 | int GetRndSeed() |
| 915 | { |
| 916 | SeedCount++; |
| 917 | sglGameSeed = static_cast<unsigned int>(RndMult) * sglGameSeed + RndInc; |
| 918 | return abs(sglGameSeed); |
| 919 | } |
| 920 | |
| 921 | /** |
| 922 | * @brief Main RNG function |
no outgoing calls
no test coverage detected