Increased language count cap from 8 to 9 to support the latest language (#250)

This commit is contained in:
leXorNet
2024-02-29 00:19:49 +01:00
committed by GitHub
parent aebbb22cde
commit 7ca5461c33

View File

@@ -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;
}