summaryrefslogtreecommitdiffstats
path: root/src/render/Glass.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-09-14 19:48:49 +0200
committerSergeanur <s.anureev@yandex.ua>2020-09-14 20:07:31 +0200
commit38ec1bd50de234faf476daa15ea41778a860ca0b (patch)
treefedfb6fcbdd34f2dd576e6e6b1e6b2a76871b5a1 /src/render/Glass.cpp
parentFixes from miami (diff)
downloadre3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.gz
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.bz2
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.lz
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.xz
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.zst
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.zip
Diffstat (limited to 'src/render/Glass.cpp')
-rw-r--r--src/render/Glass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/Glass.cpp b/src/render/Glass.cpp
index ee36bad3..c52d49bd 100644
--- a/src/render/Glass.cpp
+++ b/src/render/Glass.cpp
@@ -700,7 +700,7 @@ CGlass::WindowRespondsToExplosion(CEntity *entity, CVector point)
if ( fDistToGlass < 10.0f )
{
- distToGlass.Normalise(0.3f);
+ distToGlass *= (0.3f / fDistToGlass); // normalise
WindowRespondsToCollision(object, 10000.0f, distToGlass, object->GetPosition(), true);
}
else