1
0
mirror of https://github.com/xfjx/TonUINO.git synced 2025-08-30 08:40:06 +02:00

Merge pull request #2 from oeddn/patch-1

Add missing curly braces around else statement
This commit is contained in:
Thorsten Voß
2018-09-05 18:18:40 +02:00
committed by GitHub

View File

@@ -96,10 +96,11 @@ static void nextTrack() {
mp3.playFolderTrack(myCard.folder, track);
// Fortschritt im EEPROM abspeichern
EEPROM.write(myCard.folder, track);
} else
} else {
mp3.sleep();
// Fortschritt zurück setzen
EEPROM.write(myCard.folder, 1);
}
}
}