Skip to content

Commit 00bed98

Browse files
author
Meyyappan Velayutham
authored
Merge pull request #2 from linkstreet/fix/xcode-15-bugs
Fix Xcode 15 bugs
2 parents f66edbd + 570bf83 commit 00bed98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CountdownLabel/LTMorphingLabel/LTEasing.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public struct LTEasing {
1818

1919
public static func easeOutQuint(_ t: Float, _ b: Float, _ c: Float, _ d: Float = 1.0) -> Float {
2020
return {
21-
return c * ($0 * $0 * $0 * $0 * $0 + 1.0) + b
21+
return c * (pow($0, 5) + 1.0) + b
2222
}(t / d - 1.0)
2323
}
2424

0 commit comments

Comments
 (0)