Fix water UV on high FPS and inverted free camera

This commit is contained in:
Sergeanur
2020-05-08 14:34:21 +03:00
parent a8f1505517
commit e0b3418e65
3 changed files with 11 additions and 1 deletions

View File

@ -56,6 +56,11 @@ public:
friend bool GenericLoad(void);
friend bool GenericSave(int file);
#ifdef FIX_BUGS
static float GetDefaultTimeStep(void) { return 5.0f / 3.0f; }
static float GetTimeStepFix(void) { return GetTimeStep() / GetDefaultTimeStep(); }
#endif
};
#ifdef FIX_BUGS