소스 검색

🐛 Fix 2d mesh print (#24536)

tombrazier 3 년 전
부모
커밋
deca553e18
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/src/feature/bedlevel/bedlevel.cpp

+ 1
- 1
Marlin/src/feature/bedlevel/bedlevel.cpp 파일 보기

@@ -154,7 +154,7 @@ void reset_bed_level() {
154 154
       #endif
155 155
       LOOP_L_N(x, sx) {
156 156
         SERIAL_CHAR(' ');
157
-        const float offset = values[x * sx + y];
157
+        const float offset = values[x * sy + y];
158 158
         if (!isnan(offset)) {
159 159
           if (offset >= 0) SERIAL_CHAR('+');
160 160
           SERIAL_ECHO_F(offset, int(precision));

Loading…
취소
저장