Skip to content

Commit 90b4c7c

Browse files
MaEtUgRLorenzMeier
authored andcommitted
mathlib: fix floorf indentation
1 parent 710c529 commit 90b4c7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mathlib/mathlib.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ float degrees(float radians)
7272

7373
int floorf(float input)
7474
{
75-
int res = int(input);
75+
int res = int(input);
7676
if (res > input) {
77-
res--;
77+
res--;
7878
}
7979

8080
return res;

0 commit comments

Comments
 (0)