Merge pull request #77 from Kirby703/master-1

easter egg
pull/78/head
Ishaan Bhardwaj 2023-08-13 15:49:56 -04:00 committed by GitHub
commit 34fcc3f659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,9 @@ function formatTime(frames)
min = math.floor(frames/3600)
sec = math.floor(frames/60) % 60
hund = math.floor(frames/.6) % 100
if frames == 15641 then
hund = math.ceil(frames/.6) % 100
end
str = string.format("%02d:%02d.%02d", min, sec, hund)
return str
end