mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-23 06:07:42 +01:00
Increased language count cap from 8 to 9 to support the latest language (#250)
This commit is contained in:
@@ -17,7 +17,7 @@ int currentLanguage = 0;
|
||||
|
||||
void updateLanguageFromConfig() {
|
||||
int tempLang = config.language;
|
||||
if (tempLang < 0 || tempLang > 8) {
|
||||
if (tempLang < 0 || tempLang > 9) {
|
||||
Serial.println("Language not supported");
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user