Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» ftdi_language
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed May 14, 2023
1 parent f97a813 commit 4a2db0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void LanguageMenu::onRedraw(draw_mode_t) {
bool LanguageMenu::onTouchEnd(uint8_t tag) {

if (tag > 0 && tag <= NUM_LANGUAGES) {
lang = tag - 1;
ftdi_language = tag - 1;
GOTO_SCREEN(StatusScreen);
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
#include "../../../../MarlinCore.h"
#if ENABLED(TOUCH_UI_FTDI_EVE)
#include "language.h"
uint8_t lang = 0;
uint8_t ftdi_language = 0;
#endif

0 comments on commit 4a2db0f

Please sign in to comment.