diff options
author | aap <aap@papnet.eu> | 2021-01-09 16:13:33 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-01-09 16:13:33 +0100 |
commit | 9693184cea6fa08944a7d4862852c15e9a6d29e3 (patch) | |
tree | 4a51026e59b9d1aa0fd36e6ab349e61578c66e3e /src | |
parent | cam sector fix (diff) | |
download | re3-9693184cea6fa08944a7d4862852c15e9a6d29e3.tar re3-9693184cea6fa08944a7d4862852c15e9a6d29e3.tar.gz re3-9693184cea6fa08944a7d4862852c15e9a6d29e3.tar.bz2 re3-9693184cea6fa08944a7d4862852c15e9a6d29e3.tar.lz re3-9693184cea6fa08944a7d4862852c15e9a6d29e3.tar.xz re3-9693184cea6fa08944a7d4862852c15e9a6d29e3.tar.zst re3-9693184cea6fa08944a7d4862852c15e9a6d29e3.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/vehicles/Boat.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vehicles/Boat.cpp b/src/vehicles/Boat.cpp index f2f80569..4bbbadbd 100644 --- a/src/vehicles/Boat.cpp +++ b/src/vehicles/Boat.cpp @@ -22,15 +22,15 @@ #define INVALID_ORIENTATION (-9999.99f) -float fShapeLength = 0.4f; -float fShapeTime = 0.05f; -float fRangeMult = 0.75f; //0.6f; // 0.75f gta 3 -float fTimeMult; - float MAX_WAKE_LENGTH = 50.0f; float MIN_WAKE_INTERVAL = 1.0f; float WAKE_LIFETIME = 400.0f; +float fShapeLength = 0.4f; +float fShapeTime = 0.05f; +float fRangeMult = 0.75f; +float fTimeMult = 1.0f/WAKE_LIFETIME; + CBoat *CBoat::apFrameWakeGeneratingBoats[4]; const uint32 CBoat::nSaveStructSize = |