浏览代码

Fix no-bed compile error

Scott Lahteine 5 年前
父节点
当前提交
ad7a6e10a7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/lcd/menu/menu_temperature.cpp

+ 1
- 1
Marlin/src/lcd/menu/menu_temperature.cpp 查看文件

@@ -284,7 +284,7 @@ void menu_temperature() {
284 284
     //
285 285
     bool has_heat = false;
286 286
     HOTEND_LOOP() if (thermalManager.temp_hotend[HOTEND_INDEX].target) { has_heat = true; break; }
287
-    #if HAS_TEMP_BED
287
+    #if HAS_HEATED_BED
288 288
       if (thermalManager.temp_bed.target) has_heat = true;
289 289
     #endif
290 290
     if (has_heat) ACTION_ITEM(MSG_COOLDOWN, lcd_cooldown);

正在加载...
取消
保存