diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2020-02-25 20:54:26 +0100 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2020-03-22 17:30:54 +0100 |
commit | c88c2115e227ef0dbac6368224f1564159a9e2df (patch) | |
tree | d58a1ae9fa66ff43f6bf71aa020f9f78b66f7544 /src/control/Bridge.cpp | |
parent | Fixes for Serge's review (diff) | |
download | re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.gz re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.bz2 re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.lz re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.xz re3-c88c2115e227ef0dbac6368224f1564159a9e2df.tar.zst re3-c88c2115e227ef0dbac6368224f1564159a9e2df.zip |
Diffstat (limited to 'src/control/Bridge.cpp')
-rw-r--r-- | src/control/Bridge.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/control/Bridge.cpp b/src/control/Bridge.cpp index 31214207..6a577449 100644 --- a/src/control/Bridge.cpp +++ b/src/control/Bridge.cpp @@ -60,7 +60,7 @@ void CBridge::Update() if (timeElapsed < 10000) { State = STATE_LIFT_PART_MOVING_DOWN; - liftHeight = 25.0 - timeElapsed / 10000.0 * 25.0f; + liftHeight = 25.0f - timeElapsed / 10000.0f * 25.0f; } else if (timeElapsed < 40000) { @@ -75,7 +75,7 @@ void CBridge::Update() else if (timeElapsed < 60000) { State = STATE_LIFT_PART_MOVING_UP; - liftHeight = (timeElapsed - 50000) / 10000.0 * 25.0f; + liftHeight = (timeElapsed - 50000) / 10000.0f * 25.0f; } else { @@ -151,4 +151,4 @@ STARTPATCHES InjectHook(0x413D10, &CBridge::ShouldLightsBeFlashing, PATCH_JUMP); InjectHook(0x413D20, &CBridge::FindBridgeEntities, PATCH_JUMP); InjectHook(0x413DE0, &CBridge::ThisIsABridgeObjectMovingUp, PATCH_JUMP); -ENDPATCHES
\ No newline at end of file +ENDPATCHES |