Browse Source

Fix extrude_min_temp compiler warning

pull/1/head
Scott Lahteine 7 years ago
parent
commit
dde8bb7c8b
  1. 2
      Marlin/temperature.cpp
  2. 2
      Marlin/temperature.h

2
Marlin/temperature.cpp

@ -113,7 +113,7 @@ int16_t Temperature::current_temperature_raw[HOTENDS] = { 0 },
#if ENABLED(PREVENT_COLD_EXTRUSION)
bool Temperature::allow_cold_extrude = false;
uint16_t Temperature::extrude_min_temp = EXTRUDE_MINTEMP;
int16_t Temperature::extrude_min_temp = EXTRUDE_MINTEMP;
#endif
// private:

2
Marlin/temperature.h

@ -172,7 +172,7 @@ class Temperature {
#if ENABLED(PREVENT_COLD_EXTRUSION)
static bool allow_cold_extrude;
static uint16_t extrude_min_temp;
static int16_t extrude_min_temp;
static bool tooColdToExtrude(uint8_t e) {
#if HOTENDS == 1
UNUSED(e);

Loading…
Cancel
Save