diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2020-10-05 17:40:44 +0200 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2020-10-05 17:40:44 +0200 |
commit | e3571510aec069ec979dd01442ce985f910bfaca (patch) | |
tree | 3762241e9591f0b78486220255797f74bb9a5819 /src | |
parent | Fix Audio (diff) | |
download | re3-e3571510aec069ec979dd01442ce985f910bfaca.tar re3-e3571510aec069ec979dd01442ce985f910bfaca.tar.gz re3-e3571510aec069ec979dd01442ce985f910bfaca.tar.bz2 re3-e3571510aec069ec979dd01442ce985f910bfaca.tar.lz re3-e3571510aec069ec979dd01442ce985f910bfaca.tar.xz re3-e3571510aec069ec979dd01442ce985f910bfaca.tar.zst re3-e3571510aec069ec979dd01442ce985f910bfaca.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/vehicles/Vehicle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicles/Vehicle.cpp b/src/vehicles/Vehicle.cpp index 2e790e81..79e27c00 100644 --- a/src/vehicles/Vehicle.cpp +++ b/src/vehicles/Vehicle.cpp @@ -2135,7 +2135,7 @@ CVehicle::HeliDustGenerate(CEntity *heli, float radius, float ground, int rnd) r = clamp(red, 0.0f, 255.0f); g = clamp(green, 0.0f, 255.0f); b = clamp(blue, 0.0f, 255.0f); - RwRGBA col1 = { r, g, b, CGeneral::GetRandomNumberInRange(8, 32) }; + RwRGBA col1 = { r, g, b, (RwUInt8)CGeneral::GetRandomNumberInRange(8, 32) }; RwRGBA col2 = { 255, 255, 255, 32 }; if(n&1) |