Skip to content

Commit 80f90bf

Browse files
committed
oh yeah
1 parent 05c1b5b commit 80f90bf

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Marlin/src/inc/Changes.h

-2
Original file line numberDiff line numberDiff line change
@@ -659,8 +659,6 @@
659659
#error "Z3_USE_ENDSTOP is obsolete. Instead set Z2_STOP_PIN directly. (e.g., 'Z3_USE_ENDSTOP _ZMAX_' becomes 'Z3_STOP_PIN Z_MAX_PIN')"
660660
#elif defined(Z4_USE_ENDSTOP)
661661
#error "Z4_USE_ENDSTOP is obsolete. Instead set Z4_STOP_PIN directly. (e.g., 'Z4_USE_ENDSTOP _ZMAX_' becomes 'Z4_STOP_PIN Z_MAX_PIN')"
662-
#elif defined(BOOT_MARLIN_LOGO_USES_RLE16)
663-
#error "BOOT_MARLIN_LOGO_USES_RLE16 is now COMPACT_MARLIN_BOOT_LOGO."
664662
#endif
665663

666664
// L64xx stepper drivers have been removed

Marlin/src/lcd/tft/canvas.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void Canvas::addImage(int16_t x, int16_t y, MarlinImage image, uint16_t *colors)
158158
++row; ++outrow; // Advance to the next line
159159
col = 0; outcol = x;
160160
if (outrow >= endLine || row >= image_height) {
161-
done = true; // Done once past the end of the canvas
161+
done = true; // Once past the end of the canvas we're done
162162
break;
163163
}
164164
}

0 commit comments

Comments
 (0)