Adjust ENSURE_SMOOTH_MOVES coding style

This commit is contained in:
Scott Lahteine
2016-11-19 01:09:32 -06:00
parent 072541f286
commit 2cc32d85a3
2 changed files with 76 additions and 72 deletions

View File

@ -374,7 +374,7 @@ class Planner {
static bool long_move() {
if (blocks_queued()) {
block_t* block = &block_buffer[block_buffer_tail];
return (block->segment_time > (LCD_UPDATE_THRESHOLD * 1000UL));
return block->segment_time > (LCD_UPDATE_THRESHOLD) * 1000UL;
}
else
return true;