Browse Source

mathlib: fix floorf indentation

master
Matthias Grob 6 years ago committed by Lorenz Meier
parent
commit
90b4c7c065
  1. 4
      mathlib/mathlib.cpp

4
mathlib/mathlib.cpp

@ -72,9 +72,9 @@ float degrees(float radians) @@ -72,9 +72,9 @@ float degrees(float radians)
int floorf(float input)
{
int res = int(input);
int res = int(input);
if (res > input) {
res--;
res--;
}
return res;

Loading…
Cancel
Save