1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-02 22:14:37 +00:00

MSVC optimizer doesn't like refs to primitive types

This commit is contained in:
fgenesis 2022-09-14 05:21:25 +02:00
parent a1005dafe2
commit 4b64147914
2 changed files with 2 additions and 2 deletions

View file

@ -182,7 +182,7 @@ enum LerpType
#define DOUBLE_CLICK_DELAY 0.5f
float lerp(const float &v1, const float &v2, float dt, int lerpType);
float lerp(float v1, float v2, float dt, int lerpType);