diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-29 01:44:12 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-29 17:16:26 +0100 |
commit | c4328afce7e2a0b48b9d0d2b225496e29fff1c0a (patch) | |
tree | cbed53aea63f025992b16be9b8ad1d13097df20b /src/peds/Ped.cpp | |
parent | Fix some UBs (diff) | |
download | re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.gz re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.bz2 re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.lz re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.xz re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.zst re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/peds/Ped.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peds/Ped.cpp b/src/peds/Ped.cpp index 6a3df18b..cec88580 100644 --- a/src/peds/Ped.cpp +++ b/src/peds/Ped.cpp @@ -1609,7 +1609,7 @@ CPed::ProcessBuoyancy(void) color.r = (0.5f * CTimeCycle::GetDirectionalRed() + CTimeCycle::GetAmbientRed()) * 127.5f; color.g = (0.5f * CTimeCycle::GetDirectionalBlue() + CTimeCycle::GetAmbientBlue()) * 127.5f; color.b = (0.5f * CTimeCycle::GetDirectionalGreen() + CTimeCycle::GetAmbientGreen()) * 127.5f; - color.a = (CGeneral::GetRandomNumber() % 256 * 48.0f) + 48; + color.a = CGeneral::GetRandomNumberInRange(48.0f, 96.0f); bIsInWater = true; ApplyMoveForce(buoyancyImpulse); if (!DyingOrDead()) { |