Should fix compiler warning for feedrate deadzone

This commit is contained in:
xifle 2013-06-29 13:25:11 +02:00
parent ecf3ab5de4
commit 61fe430d4f

View File

@ -173,8 +173,8 @@ static void lcd_status_screen()
}
// Dead zone at 100% feedrate
if (feedmultiply < 100 && (feedmultiply + int(encoderPosition)) > 100 ||
feedmultiply > 100 && (feedmultiply + int(encoderPosition)) < 100)
if ((feedmultiply < 100 && (feedmultiply + int(encoderPosition)) > 100) ||
(feedmultiply > 100 && (feedmultiply + int(encoderPosition)) < 100))
{
encoderPosition = 0;
feedmultiply = 100;