Fix missing LCD_STR_REFRESH

This commit is contained in:
Scott Lahteine
2017-06-12 01:28:52 -05:00
parent 699aa35df6
commit 445227c807
2 changed files with 3 additions and 3 deletions

View File

@ -341,13 +341,13 @@ static void lcd_set_custom_characters(
}
else { // Custom characters for submenus
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
createChar_P(LCD_REFRESH_CHAR, refresh);
createChar_P(LCD_STR_REFRESH[0], refresh);
createChar_P(LCD_STR_FOLDER[0], folder);
}
}
#else
createChar_P(LCD_UPLEVEL_CHAR, uplevel);
createChar_P(LCD_REFRESH_CHAR, refresh);
createChar_P(LCD_STR_REFRESH[0], refresh);
createChar_P(LCD_STR_FOLDER[0], folder);
#endif