fixed broken includes

This commit is contained in:
itsmattkc
2018-11-13 02:56:31 +11:00
parent 6495c5768d
commit b3bcddf96b
11 changed files with 29 additions and 22 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
#include "math.h"
#include <QtMath>
int lerp(int a, int b, double t) {
return ((1.0 - t) * a) + (t * b);
return qRound(((1.0 - t) * a) + (t * b));
}
double double_lerp(double a, double b, double t) {