Remove comment

This commit is contained in:
Lewis Jackson 2023-05-29 14:45:59 +03:00
parent 82bfd0471f
commit e6a8b33b37

View file

@ -39,7 +39,7 @@ void WatchyRTC::read(tmElements_t & tm, int offsetInSeconds) {
int minute = tm.Minute;
int second = tm.Second;
// adjust for offset - making some assumptions here: month and year will never change.
// adjust for offset
second += offsetInSeconds;
if (second >= 60 || second < 0) {
minute += second / 60;