Browse Source

🐛 LCD string followup (#22892)

Pyro-Fox 3 years ago
parent
commit
13bb2393e1
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/menu/menu_bed_corners.cpp

+ 1
- 1
Marlin/src/lcd/menu/menu_bed_corners.cpp View File

179
     // Display # of good points found vs total needed
179
     // Display # of good points found vs total needed
180
     if (PAGE_CONTAINS(y - (MENU_FONT_HEIGHT), y)) {
180
     if (PAGE_CONTAINS(y - (MENU_FONT_HEIGHT), y)) {
181
       SETCURSOR(TERN(TFT_COLOR_UI, 2, 0), cy);
181
       SETCURSOR(TERN(TFT_COLOR_UI, 2, 0), cy);
182
-      lcd_put_u8str_(GET_TEXT_F(MSG_BED_TRAMMING_GOOD_POINTS));
182
+      lcd_put_u8str(GET_TEXT_F(MSG_BED_TRAMMING_GOOD_POINTS));
183
       IF_ENABLED(TFT_COLOR_UI, lcd_moveto(12, cy));
183
       IF_ENABLED(TFT_COLOR_UI, lcd_moveto(12, cy));
184
       lcd_put_u8str(GOOD_POINTS_TO_STR(good_points));
184
       lcd_put_u8str(GOOD_POINTS_TO_STR(good_points));
185
       lcd_put_wchar('/');
185
       lcd_put_wchar('/');

Loading…
Cancel
Save