Fix some include paths

This commit is contained in:
Scott Lahteine
2019-02-04 03:41:55 -06:00
parent 0d720a6ff4
commit d4d1b28a06
12 changed files with 15 additions and 15 deletions

View File

@ -37,7 +37,7 @@ FWRetract fwretract; // Single instance - this calls the constructor
#include "../module/stepper.h"
#if ENABLED(RETRACT_SYNC_MIXING)
#include "../feature/mixing.h"
#include "mixing.h"
#endif
// private:

View File

@ -38,11 +38,11 @@
#include "../module/temperature.h"
#if ENABLED(FWRETRACT)
#include "../feature/fwretract.h"
#include "fwretract.h"
#endif
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
#include "../feature/runout.h"
#include "runout.h"
#endif
#include "../lcd/ultralcd.h"