Overflow in currentTimeMillis and getTimeNowSeconds #3531

it now takes 1000 times longer to overflow
This commit is contained in:
rusefillc 2021-11-11 16:43:41 -05:00
parent 825a57e33a
commit 46e9269982
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ static EngineStateBlinkingTask engineStateBlinkingTask;
// todo: this overflows pretty fast!
efitimems_t currentTimeMillis(void) {
return US2MS(getTimeNowUs();
return US2MS(getTimeNowUs());
}
// todo: this overflows pretty fast!