소스 검색

Fix garbled print_xyz output (#18810)

Victor Tseng 4 년 전
부모
커밋
b5ece63778
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/src/core/serial.cpp

+ 1
- 1
Marlin/src/core/serial.cpp 파일 보기

@@ -68,7 +68,7 @@ void print_bin(uint16_t val) {
68 68
 extern const char SP_X_STR[], SP_Y_STR[], SP_Z_STR[];
69 69
 
70 70
 void print_xyz(const float &x, const float &y, const float &z, PGM_P const prefix/*=nullptr*/, PGM_P const suffix/*=nullptr*/) {
71
-  serialprintPGM(prefix);
71
+  if (prefix) serialprintPGM(prefix);
72 72
   SERIAL_ECHOPAIR_P(SP_X_STR, x, SP_Y_STR, y, SP_Z_STR, z);
73 73
   if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
74 74
 }

Loading…
취소
저장