We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2607f2 + 6900ee4 commit 4abd511Copy full SHA for 4abd511
1 file changed
InfiniLink/Music/MusicController.swift
@@ -104,7 +104,7 @@ class MusicController {
104
}
105
106
func convertTime(value: Double) -> [UInt8] {
107
- let val32 : UInt32 = UInt32(floor(value))
+ var val32 : UInt32 = UInt32(0); if value < Double(UInt32.max) && Double(UInt32.max) >= 0.0 {val32 = UInt32(floor(value))}
108
109
let byte1 = UInt8(val32 & 0x000000FF)
110
let byte2 = UInt8((val32 & 0x0000FF00) >> 8)
0 commit comments