Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
boat fix
  • Loading branch information
aap committed Jan 9, 2021
1 parent 822f0bd commit 9693184cea6fa08944a7d4862852c15e9a6d29e3
Showing with 5 additions and 5 deletions.
  1. +5 −5 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 =

0 comments on commit 9693184

Please sign in to comment.