diff options
author | aap <aap@papnet.eu> | 2020-07-19 00:56:13 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-07-19 00:56:13 +0200 |
commit | b8c2cf597db91188ceae24a702e2d276d4d89fd2 (patch) | |
tree | 6f3443e5f307ab88ef1c78c0a6d74137e24038b8 /src/vehicles/Plane.cpp | |
parent | CPlane fixes (diff) | |
download | re3-b8c2cf597db91188ceae24a702e2d276d4d89fd2.tar re3-b8c2cf597db91188ceae24a702e2d276d4d89fd2.tar.gz re3-b8c2cf597db91188ceae24a702e2d276d4d89fd2.tar.bz2 re3-b8c2cf597db91188ceae24a702e2d276d4d89fd2.tar.lz re3-b8c2cf597db91188ceae24a702e2d276d4d89fd2.tar.xz re3-b8c2cf597db91188ceae24a702e2d276d4d89fd2.tar.zst re3-b8c2cf597db91188ceae24a702e2d276d4d89fd2.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Plane.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicles/Plane.cpp b/src/vehicles/Plane.cpp index 8a183a23..b8a957cf 100644 --- a/src/vehicles/Plane.cpp +++ b/src/vehicles/Plane.cpp @@ -698,7 +698,7 @@ CPlane::InitPlanes(void) aPlaneLineBits[1].time = time; aPlaneLineBits[1].position = position; aPlaneLineBits[1].speed = TAXI_SPEED; - aPlaneLineBits[1].acceleration = 33.0f/32.0f; + aPlaneLineBits[1].acceleration = 618.75f/600.0f; time += 600.0f/((CRUISE_SPEED+TAXI_SPEED)/2.0f); position += 600.0f; @@ -717,7 +717,7 @@ CPlane::InitPlanes(void) aPlaneLineBits[3].time = time; aPlaneLineBits[3].position = position; aPlaneLineBits[3].speed = CRUISE_SPEED; - aPlaneLineBits[3].acceleration = -33.0f/32.0f; + aPlaneLineBits[3].acceleration = -618.75f/600.0f; time += 600.0f/((CRUISE_SPEED+TAXI_SPEED)/2.0f); position += 600.0f; |