Skip to content

Commit

Permalink
Fix bad #ifdef (MarlinFirmware#16227)
Browse files Browse the repository at this point in the history
  • Loading branch information
shitcreek authored and christran206 committed Dec 30, 2019
1 parent 69728fb commit 2084ad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/feature/camera/M240.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
millis_t chdk_timeout; // = 0
#endif

#ifdef PHOTO_POSITION && PHOTO_DELAY_MS > 0
#if defined(PHOTO_POSITION) && PHOTO_DELAY_MS > 0
#include "../../../Marlin.h" // for idle()
#endif

Expand Down

0 comments on commit 2084ad4

Please sign in to comment.