Skip to content

Commit

Permalink
Merge pull request #1 from linkstreet/fix/xcode-12-bugs
Browse files Browse the repository at this point in the history
Fix xcode 12 bugs
  • Loading branch information
talk2cerlin authored Nov 10, 2020
2 parents 25df189 + a525d95 commit f66edbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CountdownLabel/LTMorphingLabel/LTEasing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public struct LTEasing {

public static func easeInQuint(_ t: Float, _ b: Float, _ c: Float, _ d: Float = 1.0) -> Float {
return {
return c * $0 * $0 * $0 * $0 * $0 + b
return c * ($0 * $0 * $0 * $0 * $0) + b
}(t / d)
}

Expand Down

0 comments on commit f66edbd

Please sign in to comment.