Browse Source

Fix axis name in serial output (#18522)

Giuliano Zaro 4 years ago
parent
commit
7448b65567
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/core/types.h

+ 1
- 1
Marlin/src/core/types.h View File

501
 #undef FI
501
 #undef FI
502
 
502
 
503
 const xyze_char_t axis_codes { 'X', 'Y', 'Z', 'E' };
503
 const xyze_char_t axis_codes { 'X', 'Y', 'Z', 'E' };
504
-#define XYZ_CHAR(A) ('X' + char(A))
504
+#define XYZ_CHAR(A) ((char)('X' + A))

Loading…
Cancel
Save