This commit is contained in:
rusefi 2017-12-10 15:05:58 -05:00
parent 11a53b6fa9
commit 155216ebd5
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ int minI(int i1, int i2) {
}
/*
float efiFloat(float value, float precision) {
float efiFloor(float value, float precision) {
int a = (int) (value / precision);
return a * precision;
}