瀏覽代碼

make LETTTER_OFF return values that match param indices range

Bob-the-Kuhn 7 年之前
父節點
當前提交
e6e3132f79
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      Marlin/gcode.h

+ 1
- 1
Marlin/gcode.h 查看文件

@@ -104,7 +104,7 @@ public:
104 104
   // Index so that 'X' falls on index 24
105 105
   #define PARAM_IND(N)  ((N) >> 3)
106 106
   #define PARAM_BIT(N)  ((N) & 0x7)
107
-  #define LETTER_OFF(N) ((N) - 'A' + 1)
107
+  #define LETTER_OFF(N) ((N) - 'A')
108 108
   #define LETTER_IND(N) PARAM_IND(LETTER_OFF(N))
109 109
   #define LETTER_BIT(N) PARAM_BIT(LETTER_OFF(N))
110 110
 

Loading…
取消
儲存