From 90b4c7c065dcd4ffd96feb25d981d8caf092cf3e Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Fri, 24 May 2019 08:40:18 +0100 Subject: [PATCH] mathlib: fix floorf indentation --- mathlib/mathlib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mathlib/mathlib.cpp b/mathlib/mathlib.cpp index fe2bc716df..ca34a5569c 100644 --- a/mathlib/mathlib.cpp +++ b/mathlib/mathlib.cpp @@ -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;