浏览代码

Merge pull request #5271 from esenapaj/Fix-for-the-PR-#5267

Fix for thePR #5267 (Introduce a +1234.56 format for over 999 steps/mm)
Scott Lahteine 8 年前
父节点
当前提交
38466b1d2f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/utility.cpp

+ 1
- 1
Marlin/utility.cpp 查看文件

35
 
35
 
36
 #if ENABLED(ULTRA_LCD)
36
 #if ENABLED(ULTRA_LCD)
37
 
37
 
38
-  char conv[8];
38
+  char conv[9];
39
 
39
 
40
   #define DIGIT(n) ('0' + (n))
40
   #define DIGIT(n) ('0' + (n))
41
   #define DIGIMOD(n, f) DIGIT((n)/(f) % 10)
41
   #define DIGIMOD(n, f) DIGIT((n)/(f) % 10)

正在加载...
取消
保存