1
Fork 0
mirror of https://github.com/RYGhub/the-cold-night.git synced 2024-11-24 05:34:18 +00:00

🔧 annoying

This commit is contained in:
Steffo 2022-04-05 02:41:35 +02:00
parent e9284b5f46
commit 700f5b32a1
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -6,6 +6,7 @@ static func is_between(m, val, x):
static func format_time(value): static func format_time(value):
# warning-ignore: NARROWING_CONVERSION
var minutes: int = floor(value / 60) var minutes: int = floor(value / 60)
var seconds_and_millis: float = value - minutes * 60 var seconds_and_millis: float = value - minutes * 60
var seconds: int = int(seconds_and_millis) var seconds: int = int(seconds_and_millis)